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, 11 insertions, 0 deletions
diff --git a/sql/001-init.sql b/sql/001-init.sql
new file mode 100644
index 0000000..ab46a38
--- /dev/null
+++ b/sql/001-init.sql
@@ -0,0 +1,11 @@
+BEGIN TRANSACTION;
+
+CREATE TABLE active_chats (
+ id BIGINT PRIMARY KEY
+);
+
+CREATE TABLE permitted_users (
+ id BIGINT PRIMARY KEY
+);
+
+COMMIT;