No more nullable uses field(it was signed) so option was redundant

This commit is contained in:
shockrah
2020-03-09 00:52:09 -07:00
parent 2eb2a83c76
commit 924c15a436
3 changed files with 3 additions and 11 deletions

View File

@@ -2,6 +2,6 @@
CREATE TABLE IF NOT EXISTS `invites` (
`id` bigint UNSIGNED NOT NULL,
`expires` bigint UNSIGNED NOT NULL,
`uses` integer,
`uses` integer NOT NULL,
PRIMARY KEY( `id` )
);