summaryrefslogtreecommitdiff
path: root/sql
diff options
context:
space:
mode:
Diffstat (limited to 'sql')
-rw-r--r--sql/0_1.sql10
-rw-r--r--sql/1_2.sql9
2 files changed, 0 insertions, 19 deletions
diff --git a/sql/0_1.sql b/sql/0_1.sql
deleted file mode 100644
index 847b16d..0000000
--- a/sql/0_1.sql
+++ /dev/null
@@ -1,10 +0,0 @@
--- Init
-CREATE TABLE "says"
-(
- "id" INTEGER PRIMARY KEY,
- "t" TEXT NOT NULL UNIQUE,
- "url" TEXT,
- "msg" INTEGER NOT NULL
-);
-
-PRAGMA user_version = 1; \ No newline at end of file
diff --git a/sql/1_2.sql b/sql/1_2.sql
deleted file mode 100644
index 37d2168..0000000
--- a/sql/1_2.sql
+++ /dev/null
@@ -1,9 +0,0 @@
--- Add stats
-CREATE TABLE "stats"
-(
- "user" INTEGER UNIQUE,
- "i" INTEGER NOT NULL,
- PRIMARY KEY("user")
-);
-
-PRAGMA user_version = 2; \ No newline at end of file