basic invites migrations ready

This commit is contained in:
shockrah 2020-01-30 23:52:06 -08:00
parent a1e6d6131d
commit b0ab68c134
2 changed files with 7 additions and 0 deletions

View File

@ -0,0 +1 @@
-- This file should undo anything in `up.sql`

View File

@ -0,0 +1,6 @@
-- Your SQL goes here
CREATE TABLE invites(
id INTEGER PRIMARY KEY NOT NULL,
uses INTEGER,
expire INTEGER
);