removed optional fields
This commit is contained in:
parent
b39a95f3a3
commit
50c2c1da0e
@ -5,8 +5,8 @@
|
|||||||
-- email: used for signing in to the server
|
-- email: used for signing in to the server
|
||||||
CREATE TABLE IF NOT EXISTS `users` (
|
CREATE TABLE IF NOT EXISTS `users` (
|
||||||
`userid` bigint UNSIGNED NOT NULL auto_increment,
|
`userid` bigint UNSIGNED NOT NULL auto_increment,
|
||||||
`username` varchar(255),
|
`username` varchar(255) NOT NULL,
|
||||||
`key_hash` varchar(255),
|
`key` varchar(255) NOT NULL,
|
||||||
`date` bigint UNSIGNED NOT NULL,
|
`date` bigint UNSIGNED NOT NULL,
|
||||||
PRIMARY KEY( `userid` )
|
PRIMARY KEY( `userid` )
|
||||||
);
|
);
|
Loading…
Reference in New Issue
Block a user