8 lines
172 B
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` )
|
|
);
|