freechat/server/migrations/2020-02-07-231841_new_users/up.sql
shockrah 57db968568 new_users fields are more explicit
also easier to work with given current goals
2020-02-07 15:43:46 -08:00

6 lines
235 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` VARCHAR(255) NOT NULL,
`invite_id` bigint UNSIGNED NOT NULL,
PRIMARY KEY(`token`)
);