Commit 9963e9df authored by Michael Hogg's avatar Michael Hogg
Browse files

Having token set to not null breaks the use of requireemail=false in the...

Having token set to not null breaks the use of requireemail=false in the servatrice.ini as token will be null in this use case.
parent 77b9aa7c
......@@ -82,7 +82,7 @@ CREATE TABLE IF NOT EXISTS `cockatrice_users` (
`avatar_bmp` blob NOT NULL,
`registrationDate` datetime NOT NULL,
`active` tinyint(1) NOT NULL,
`token` binary(16) NOT NULL,
`token` binary(16),
`clientid` varchar(15) NOT NULL,
PRIMARY KEY (`id`),
UNIQUE KEY `name` (`name`),
......
Supports Markdown
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment