Skip to content

Commit

Permalink
Update createDatabase.sql
Browse files Browse the repository at this point in the history
Fix unique key to big
  • Loading branch information
RaspbianFrance authored Feb 27, 2018
1 parent afc610e commit c685f68
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion createDatabase.sql
Original file line number Diff line number Diff line change
Expand Up @@ -123,7 +123,7 @@ CREATE TABLE IF NOT EXISTS events
CREATE TABLE IF NOT EXISTS users
(
id INT NOT NULL AUTO_INCREMENT,
email VARCHAR(255) NOT NULL,
email VARCHAR(191) NOT NULL,
password VARCHAR(255) NOT NULL,
admin BOOLEAN NOT NULL DEFAULT FALSE,
transfer BOOLEAN NOT NULL DEFAULT FALSE,
Expand Down

0 comments on commit c685f68

Please sign in to comment.