This commit is contained in:
2018-09-22 19:57:00 +02:00
parent 543f359acd
commit a4cc8752ff
4 changed files with 20 additions and 8 deletions

View File

@@ -6,5 +6,10 @@ CREATE TABLE `users`
`messages_sent` INT(11) NOT NULL DEFAULT '0',
`timestamp_created` DATETIME NOT NULL DEFAULT CURRENT_TIMESTAMP,
`timestamp_accessed` DATETIME NULL DEFAULT NULL,
`quota_today` INT(11) NOT NULL DEFAULT '0',
`quota_day` DATE NULL DEFAULT NULL,
`quota_max` INT(11) NOT NULL DEFAULT '100',
PRIMARY KEY (`id`)
);