This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
CREATE TABLE `users` ( | |
`id` int NOT NULL AUTO_INCREMENT PRIMARY KEY, | |
`name` varchar(100) NOT NULL | |
); | |
CREATE TABLE `transactions` ( | |
`id` int NOT NULL AUTO_INCREMENT PRIMARY KEY, | |
`user_id` int(11) NOT NULL, | |
`created` datetime NOT NULL, | |
`amount` decimal(8,2) NOT NULL, |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
{ | |
"Version": "2012-10-17", | |
"Statement": [ | |
{ | |
"Effect": "Allow", | |
"Action": [ | |
"iam:AttachRolePolicy", | |
"iam:GetRole", | |
"iam:CreateRole", | |
"iam:PassRole", |
OlderNewer