aboutsummaryrefslogtreecommitdiffstats
path: root/sql/001-init.sql
diff options
context:
space:
mode:
Diffstat (limited to 'sql/001-init.sql')
-rw-r--r--sql/001-init.sql11
1 files changed, 0 insertions, 11 deletions
diff --git a/sql/001-init.sql b/sql/001-init.sql
deleted file mode 100644
index ab46a38..0000000
--- a/sql/001-init.sql
+++ /dev/null
@@ -1,11 +0,0 @@
-BEGIN TRANSACTION;
-
-CREATE TABLE active_chats (
- id BIGINT PRIMARY KEY
-);
-
-CREATE TABLE permitted_users (
- id BIGINT PRIMARY KEY
-);
-
-COMMIT;