Skip to content

Commit

Permalink
Merge pull request #1480 from ryphnyuan/master
Browse files Browse the repository at this point in the history
Change column 'Username' in table 'Authorities' to varchar(64) #1467
  • Loading branch information
nobodyiam committed Sep 14, 2018
2 parents 1f840e1 + b37ec52 commit ffc99dd
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
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
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
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 ffc99dd

Please sign in to comment.