summaryrefslogtreecommitdiffstats
path: root/migrations/2020-06-23-134455_create_users/up.sql
diff options
context:
space:
mode:
authorJokler <jokler@protonmail.com>2020-06-23 16:26:07 +0200
committerJokler <jokler@protonmail.com>2020-06-23 16:26:07 +0200
commitfc7bd403bf41d724bd8dc3bf3b827c592c539171 (patch)
tree1b816f68f1793dc8bf70e490196da6ae58d6f16a /migrations/2020-06-23-134455_create_users/up.sql
downloadrgit-fc7bd403bf41d724bd8dc3bf3b827c592c539171.tar.gz
rgit-fc7bd403bf41d724bd8dc3bf3b827c592c539171.zip
Initial commitHEADmaster
Diffstat (limited to 'migrations/2020-06-23-134455_create_users/up.sql')
-rw-r--r--migrations/2020-06-23-134455_create_users/up.sql7
1 files changed, 7 insertions, 0 deletions
diff --git a/migrations/2020-06-23-134455_create_users/up.sql b/migrations/2020-06-23-134455_create_users/up.sql
new file mode 100644
index 0000000..1f472d2
--- /dev/null
+++ b/migrations/2020-06-23-134455_create_users/up.sql
@@ -0,0 +1,7 @@
+CREATE TABLE users (
+ id SERIAL NOT NULL PRIMARY KEY,
+ power_level INTEGER NOT NULL DEFAULT 0,
+ name VARCHAR(32) UNIQUE NOT NULL,
+ created timestamp NOT NULL DEFAULT current_timestamp(),
+ hash CHAR(120) BINARY NOT NULL
+);