freechat/server/migrations/2020-02-04-083551_users/up.sql
shockrah f343f6d252 new field for online status of users
new short structure describing online users
2020-03-17 21:34:32 -07:00

13 lines
438 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) NOT NULL,
`key` varchar(255) NOT NULL,
`date` bigint UNSIGNED NOT NULL,
`status` int NOT NULL,
PRIMARY KEY( `userid` )
);