aboutsummaryrefslogtreecommitdiffstats
path: root/db
diff options
context:
space:
mode:
authorTeddy Wing2017-08-01 02:18:40 +0200
committerTeddy Wing2017-08-01 02:18:40 +0200
commitc5901e50936f2558e4ea6dc20788494a2ce61ed1 (patch)
treeb4f19caf6f094642c7575ca4e37885362fab46a7 /db
parent70b3605a346b746273a79c1a3ff4bc40ae0218bf (diff)
downloadsorbot-c5901e50936f2558e4ea6dc20788494a2ce61ed1.tar.bz2
Remove old hand-written migrations
Remove these migrations that I had written before installing 'dbmigrations'. These have been replaced by the one defined in 70b3605a346b746273a79c1a3ff4bc40ae0218bf.
Diffstat (limited to 'db')
-rw-r--r--db/migrations/20170731002034_create_github_commit_plugin_channel_repo_urls.down.sql1
-rw-r--r--db/migrations/20170731002034_create_github_commit_plugin_channel_repo_urls.up.sql5
2 files changed, 0 insertions, 6 deletions
diff --git a/db/migrations/20170731002034_create_github_commit_plugin_channel_repo_urls.down.sql b/db/migrations/20170731002034_create_github_commit_plugin_channel_repo_urls.down.sql
deleted file mode 100644
index 82bc736..0000000
--- a/db/migrations/20170731002034_create_github_commit_plugin_channel_repo_urls.down.sql
+++ /dev/null
@@ -1 +0,0 @@
-DROP TABLE plugin_github_commit_channel_repo_urls;
diff --git a/db/migrations/20170731002034_create_github_commit_plugin_channel_repo_urls.up.sql b/db/migrations/20170731002034_create_github_commit_plugin_channel_repo_urls.up.sql
deleted file mode 100644
index 9853357..0000000
--- a/db/migrations/20170731002034_create_github_commit_plugin_channel_repo_urls.up.sql
+++ /dev/null
@@ -1,5 +0,0 @@
-CREATE TABLE IF NOT EXISTS plugin_github_commit_channel_repo_urls (
- id INTEGER PRIMARY KEY,
- channel TEXT NOT NULL,
- repo_url TEXT NOT NULL
-);