freechat/server/migrations/2020-02-04-083657_invites/up.sql

8 lines
181 B
SQL

-- Your SQL goes here
CREATE TABLE IF NOT EXISTS `invites` (
`id` bigint UNSIGNED NOT NULL,
`expires` bigint UNSIGNED NOT NULL,
`uses` integer NOT NULL,
PRIMARY KEY( `id` )
);