removed old migratiions from unsed internal library

This commit is contained in:
shockrah 2020-02-05 17:48:57 -08:00
parent d2c45761dd
commit b52de76a66
6 changed files with 0 additions and 22 deletions

View File

@ -1 +0,0 @@
drop table users;

View File

@ -1,6 +0,0 @@
CREATE TABLE users (
id INTEGER PRIMARY KEY,
strid VARCHAR(256),
display VARCHAR(256),
native BOOLEAN
);

View File

@ -1,2 +0,0 @@
-- This file should undo anything in `up.sql`
drop table channels;

View File

@ -1,5 +0,0 @@
CREATE TABLE channels (
id INTEGER PRIMARY KEY,
name VARCHAR(128) NOT NULL,
ctype INTEGER NOT NULL
);

View File

@ -1,2 +0,0 @@
-- This file should undo anything in `up.sql`
drop table invites;

View File

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