new_users cache table

reset sql added for dev purposes
This commit is contained in:
shockrah 2020-02-07 15:23:05 -08:00
parent 3d7547007a
commit c2c82aec9b
3 changed files with 10 additions and 1 deletions

View File

@ -1 +1,2 @@
-- This file should undo anything in `up.sql` -- This file should undo anything in `up.sql`
DROP TABLE `invites`;

View File

@ -0,0 +1,2 @@
-- This file should undo anything in `up.sql`
DROP TABLE `new_users`;

View File

@ -0,0 +1,6 @@
-- Used only for those that have been given an invite and are currently using that invite
CREATE TABLE IF NOT EXISTS `new_users` (
`token` bigint NOT NULL,
`invite_id` bigint NOT NULL,
PRIMARY KEY(`token`)
);