16 lines
462 B
SQL
16 lines
462 B
SQL
-- @id : id of the invite
|
|
|
|
-- @expires : unix timestamp of when that invite expries
|
|
-- can be set to null which means it never expires
|
|
|
|
-- @uses : can be null which means it doesn't have a use limit
|
|
|
|
-- @max_uses : if this is null uses only ever incremented but we don't care for destroying on that parameter
|
|
CREATE TABLE IF NOT EXISTS `invites` (
|
|
`id` bigint UNSIGNED NOT NULL,
|
|
`expires` bigint,
|
|
`uses` integer,
|
|
`max_uses` integer,
|
|
PRIMARY KEY( `id` )
|
|
);
|