8 lines
151 B
SQL
8 lines
151 B
SQL
-- Your SQL goes here
|
|
CREATE TABLE IF NOT EXISTS `invites` (
|
|
`id` bigint NOT NULL,
|
|
`expires` datetime,
|
|
`uses` numeric(9,2),
|
|
PRIMARY KEY( `id` )
|
|
);
|