summaryrefslogtreecommitdiff
path: root/migrations/20240831024047_login.sql
diff options
context:
space:
mode:
Diffstat (limited to 'migrations/20240831024047_login.sql')
-rw-r--r--migrations/20240831024047_login.sql22
1 files changed, 0 insertions, 22 deletions
diff --git a/migrations/20240831024047_login.sql b/migrations/20240831024047_login.sql
deleted file mode 100644
index 758e9c7..0000000
--- a/migrations/20240831024047_login.sql
+++ /dev/null
@@ -1,22 +0,0 @@
-create table login (
- id text
- not null
- primary key,
- name text
- not null
- unique,
- password_hash text
- not null
-);
-
-create table token (
- secret text
- not null
- primary key,
- login text
- not null,
- issued_at text
- not null,
- foreign key (login)
- references login (id)
-);