aboutsummaryrefslogtreecommitdiffstats
path: root/migrations
diff options
context:
space:
mode:
Diffstat (limited to 'migrations')
-rw-r--r--migrations/2018-01-18-202058_create_users/down.sql2
-rw-r--r--migrations/2018-01-18-202058_create_users/up.sql8
2 files changed, 10 insertions, 0 deletions
diff --git a/migrations/2018-01-18-202058_create_users/down.sql b/migrations/2018-01-18-202058_create_users/down.sql
new file mode 100644
index 0000000..dc3714b
--- /dev/null
+++ b/migrations/2018-01-18-202058_create_users/down.sql
@@ -0,0 +1,2 @@
+-- This file should undo anything in `up.sql`
+DROP TABLE users;
diff --git a/migrations/2018-01-18-202058_create_users/up.sql b/migrations/2018-01-18-202058_create_users/up.sql
new file mode 100644
index 0000000..fee1340
--- /dev/null
+++ b/migrations/2018-01-18-202058_create_users/up.sql
@@ -0,0 +1,8 @@
+-- Create users table
+CREATE TABLE users (
+ id SERIAL PRIMARY KEY,
+ username VARCHAR NOT NULL,
+ realname VARCHAR,
+ email VARCHAR,
+ password VARCHAR NOT NULL
+)