diff options
Diffstat (limited to 'fun/tvldb/migrations')
4 files changed, 0 insertions, 19 deletions
diff --git a/fun/tvldb/migrations/20181209140247_initial/down.sql b/fun/tvldb/migrations/20181209140247_initial/down.sql deleted file mode 100644 index aa02f4f63f92..000000000000 --- a/fun/tvldb/migrations/20181209140247_initial/down.sql +++ /dev/null @@ -1,2 +0,0 @@ -DROP TABLE entries; -DROP TABLE keywords; diff --git a/fun/tvldb/migrations/20181209140247_initial/up.sql b/fun/tvldb/migrations/20181209140247_initial/up.sql deleted file mode 100644 index e8b52d5a9b91..000000000000 --- a/fun/tvldb/migrations/20181209140247_initial/up.sql +++ /dev/null @@ -1,15 +0,0 @@ -CREATE TABLE keywords ( - id SERIAL PRIMARY KEY, - name VARCHAR UNIQUE NOT NULL, - chan VARCHAR NOT NULL, - UNIQUE(name, chan) -); - -CREATE TABLE entries ( - id SERIAL PRIMARY KEY, - keyword_id INT NOT NULL REFERENCES keywords ON DELETE CASCADE, - idx INT NOT NULL, - text VARCHAR NOT NULL, - creation_ts TIMESTAMP NOT NULL, - created_by VARCHAR NOT NULL -); diff --git a/fun/tvldb/migrations/20181218142013_fix_unique/down.sql b/fun/tvldb/migrations/20181218142013_fix_unique/down.sql deleted file mode 100644 index 291a97c5ce1f..000000000000 --- a/fun/tvldb/migrations/20181218142013_fix_unique/down.sql +++ /dev/null @@ -1 +0,0 @@ --- This file should undo anything in `up.sql` \ No newline at end of file diff --git a/fun/tvldb/migrations/20181218142013_fix_unique/up.sql b/fun/tvldb/migrations/20181218142013_fix_unique/up.sql deleted file mode 100644 index 4885ae5edefe..000000000000 --- a/fun/tvldb/migrations/20181218142013_fix_unique/up.sql +++ /dev/null @@ -1 +0,0 @@ -ALTER TABLE keywords DROP CONSTRAINT IF EXISTS keywords_name_key; |