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

8 lines
172 B
SQL

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