summaryrefslogtreecommitdiffstats
path: root/migrations/20220903093057_add-users-table.sql
diff options
context:
space:
mode:
authorSanto Cariotti <santo@dcariotti.me>2022-09-03 10:10:20 +0000
committerSanto Cariotti <santo@dcariotti.me>2022-09-03 10:10:20 +0000
commit2c6434e0b89e93ab6bdddb28bcd059b48638cb0d (patch)
tree34844dc8d86780d25261c9082cf715226696c6ab /migrations/20220903093057_add-users-table.sql
parent6cda1b704d1c38fc116e59a2a206c2adebfb6d4d (diff)
Users has username and use it for login
Diffstat (limited to 'migrations/20220903093057_add-users-table.sql')
-rw-r--r--migrations/20220903093057_add-users-table.sql7
1 files changed, 7 insertions, 0 deletions
diff --git a/migrations/20220903093057_add-users-table.sql b/migrations/20220903093057_add-users-table.sql
new file mode 100644
index 0000000..0fb83c4
--- /dev/null
+++ b/migrations/20220903093057_add-users-table.sql
@@ -0,0 +1,7 @@
+CREATE TABLE USERS (
+ id SERIAL UNIQUE PRIMARY KEY,
+ email VARCHAR(100) UNIQUE NOT NULL,
+ username VARCHAR(100) UNIQUE NOT NULL,
+ password VARCHAR(100) NOT NULL,
+ is_staff BOOLEAN DEFAULT FALSE
+);