Skip to content

Commit

Permalink
Browse files Browse the repository at this point in the history
  • Loading branch information
ryphnyuan committed Sep 14, 2018
1 parent 1f840e1 commit b37ec52
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -297,7 +297,7 @@ DROP TABLE IF EXISTS `Authorities`;

CREATE TABLE `Authorities` (
`Id` int(11) unsigned NOT NULL AUTO_INCREMENT COMMENT '自增Id',
`Username` varchar(50) NOT NULL,
`Username` varchar(64) NOT NULL,
`Authority` varchar(50) NOT NULL,
PRIMARY KEY (`Id`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4;
Expand Down
2 changes: 1 addition & 1 deletion scripts/docker-quick-start/sql/apolloportaldb.sql
Original file line number Diff line number Diff line change
Expand Up @@ -297,7 +297,7 @@ DROP TABLE IF EXISTS `Authorities`;

CREATE TABLE `Authorities` (
`Id` int(11) unsigned NOT NULL AUTO_INCREMENT COMMENT '自增Id',
`Username` varchar(50) NOT NULL,
`Username` varchar(64) NOT NULL,
`Authority` varchar(50) NOT NULL,
PRIMARY KEY (`Id`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4;
Expand Down
2 changes: 1 addition & 1 deletion scripts/sql/apolloportaldb.sql
Original file line number Diff line number Diff line change
Expand Up @@ -297,7 +297,7 @@ DROP TABLE IF EXISTS `Authorities`;

CREATE TABLE `Authorities` (
`Id` int(11) unsigned NOT NULL AUTO_INCREMENT COMMENT '自增Id',
`Username` varchar(50) NOT NULL,
`Username` varchar(64) NOT NULL,
`Authority` varchar(50) NOT NULL,
PRIMARY KEY (`Id`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4;
Expand Down

0 comments on commit b37ec52

Please sign in to comment.