new field for online status of users

new short structure describing online users
This commit is contained in:
shockrah
2020-03-17 21:34:32 -07:00
parent a3af490dc9
commit f343f6d252
4 changed files with 9 additions and 0 deletions

View File

@@ -8,5 +8,6 @@ CREATE TABLE IF NOT EXISTS `users` (
`username` varchar(255) NOT NULL,
`key` varchar(255) NOT NULL,
`date` bigint UNSIGNED NOT NULL,
`status` int NOT NULL,
PRIMARY KEY( `userid` )
);