Skip to content

Commit

Permalink
fixed missing comma in sql files
Browse files Browse the repository at this point in the history
SQL files Tested with MySQL v5.7.11
  • Loading branch information
REJack committed May 28, 2016
1 parent 3b9983f commit 46308eb
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion sql/Aauth_v2.sql
Original file line number Diff line number Diff line change
Expand Up @@ -56,7 +56,7 @@ CREATE TABLE `aauth_perm_to_group` (
-- ----------------------------
DROP TABLE IF EXISTS `aauth_perm_to_user`;
CREATE TABLE `aauth_perm_to_user` (
`perm_id` int(11) unsigned NOT NULL
`perm_id` int(11) unsigned NOT NULL,
`user_id` int(11) unsigned NOT NULL,
PRIMARY KEY (`perm_id`,`user_id`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8;
Expand Down
2 changes: 1 addition & 1 deletion sql/Aauth_v2_BCrypt.sql
Original file line number Diff line number Diff line change
Expand Up @@ -56,7 +56,7 @@ CREATE TABLE `aauth_perm_to_group` (
-- ----------------------------
DROP TABLE IF EXISTS `aauth_perm_to_user`;
CREATE TABLE `aauth_perm_to_user` (
`perm_id` int(11) unsigned NOT NULL
`perm_id` int(11) unsigned NOT NULL,
`user_id` int(11) unsigned NOT NULL,
PRIMARY KEY (`perm_id`,`user_id`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8;
Expand Down

0 comments on commit 46308eb

Please sign in to comment.