freechat/server/migrations/2020-02-04-083551_users/up.sql
2020-03-07 22:06:03 -08:00

12 lines
401 B
SQL

-- id: simple id tracking users
-- username: default name that users have to display
-- display: used as a non-unique eye candy for users
-- password: yea
-- email: used for signing in to the server
CREATE TABLE IF NOT EXISTS `users` (
`userid` bigint UNSIGNED NOT NULL auto_increment,
`username` varchar(255),
`key_hash` varchar(255),
`date` bigint UNSIGNED NOT NULL,
PRIMARY KEY( `userid` )
);