freechat/server/migrations/2020-02-07-231841_new_users/up.sql
shockrah c2c82aec9b new_users cache table
reset sql added for dev purposes
2020-02-07 15:23:05 -08:00

6 lines
220 B
SQL

-- 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`)
);