Merge pull request #204 from larrabee/master
Fix error in SQL migration: utf8mb4 was not work with varchar(255)
This commit is contained in:
commit
80cf2c8888
1 changed files with 1 additions and 1 deletions
|
@ -4,7 +4,7 @@ SET @schema_version = '25';
|
|||
|
||||
# Create table to store global blacklist
|
||||
CREATE TABLE `blacklist` (
|
||||
`email` varchar(255) NOT NULL,
|
||||
`email` varchar(191) NOT NULL,
|
||||
PRIMARY KEY (`email`)
|
||||
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4;
|
||||
|
||||
|
|
Loading…
Reference in a new issue