about summary refs log tree commit diff
path: root/src/schema.rs
diff options
context:
space:
mode:
authorVincent Ambo <tazjin@gmail.com>2018-04-08T20·37+0200
committerVincent Ambo <tazjin@gmail.com>2018-04-08T20·37+0200
commit115f50ae37338450c3533f403a8404a84cfb8670 (patch)
tree541f7b0e41c9c9baadc0f4f0019c636c10b049eb /src/schema.rs
parent249f17b60a0313a66443a5c67403794986430e34 (diff)
chore(models/schema): Update with author fields
Diffstat (limited to 'src/schema.rs')
-rw-r--r--src/schema.rs4
1 files changed, 4 insertions, 0 deletions
diff --git a/src/schema.rs b/src/schema.rs
index 8b05eb5461..4881056c1c 100644
--- a/src/schema.rs
+++ b/src/schema.rs
@@ -4,6 +4,8 @@ table! {
         thread_id -> Int4,
         body -> Text,
         posted -> Timestamptz,
+        author_name -> Varchar,
+        author_email -> Varchar,
     }
 }
 
@@ -13,6 +15,8 @@ table! {
         title -> Varchar,
         body -> Text,
         posted -> Timestamptz,
+        author_name -> Varchar,
+        author_email -> Varchar,
     }
 }