diff options
author | Vincent Ambo <tazjin@gmail.com> | 2018-04-14T14·33+0200 |
---|---|---|
committer | Vincent Ambo <tazjin@gmail.com> | 2018-04-14T14·33+0200 |
commit | 8c30ef92f652f411679408344031706745346f02 (patch) | |
tree | f15ab0ebead519c105c03c128ae7f04c4194074b /src/schema.rs | |
parent | a90d1cc1a41e405ea397b06a3bc1907291c98b65 (diff) |
refactor(db): Store thread body in the posts table
This is a simplification over the previous approach. The OP of a thread is just a normal post like any other in this model, which allows some code simplifications (and future query convenience).
Diffstat (limited to 'src/schema.rs')
-rw-r--r-- | src/schema.rs | 1 |
1 files changed, 0 insertions, 1 deletions
diff --git a/src/schema.rs b/src/schema.rs index 4881056c1c9d..d14c89c4c7f8 100644 --- a/src/schema.rs +++ b/src/schema.rs @@ -13,7 +13,6 @@ table! { threads (id) { id -> Int4, title -> Varchar, - body -> Text, posted -> Timestamptz, author_name -> Varchar, author_email -> Varchar, |