aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorHarald Eilertsen <haraldei@anduin.net>2018-01-18 21:30:24 +0100
committerHarald Eilertsen <haraldei@anduin.net>2018-01-18 22:01:46 +0100
commitd2eea77842189c6964b51bc75ca5a62172b77dcd (patch)
tree33af33ee496a3c99ea84024065d9edef1ae8e201
parentd83df803c9008dba1a34b5c23ac431efc1e0a456 (diff)
downloadrocket-blog-d2eea77842189c6964b51bc75ca5a62172b77dcd.tar.gz
rocket-blog-d2eea77842189c6964b51bc75ca5a62172b77dcd.tar.bz2
rocket-blog-d2eea77842189c6964b51bc75ca5a62172b77dcd.zip
Add users table to schema.
-rw-r--r--migrations/2018-01-18-202058_create_users/down.sql2
-rw-r--r--migrations/2018-01-18-202058_create_users/up.sql8
-rw-r--r--src/schema.rs15
3 files changed, 25 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
+)
diff --git a/src/schema.rs b/src/schema.rs
index 3124ea5..ad122fd 100644
--- a/src/schema.rs
+++ b/src/schema.rs
@@ -6,3 +6,18 @@ table! {
published -> Bool,
}
}
+
+table! {
+ users (id) {
+ id -> Int4,
+ username -> Varchar,
+ realname -> Nullable<Varchar>,
+ email -> Nullable<Varchar>,
+ password -> Varchar,
+ }
+}
+
+allow_tables_to_appear_in_same_query!(
+ posts,
+ users,
+);