diff options
author | Vincent Ambo <mail@tazj.in> | 2018-05-25T16·11+0200 |
---|---|---|
committer | Vincent Ambo <github@tazj.in> | 2018-05-27T13·00+0200 |
commit | 468af132e89a8cb80392b7d6e12f1e53b849c0c1 (patch) | |
tree | f4877b500e25627a5f3b938692def8aa33cae925 /src | |
parent | 33462c01fadc1093e1992f6277270ef809451841 (diff) |
feat(db): Add migration & fields to indicate a thread is closed
Diffstat (limited to 'src')
-rw-r--r-- | src/models.rs | 1 | ||||
-rw-r--r-- | src/schema.rs | 1 |
2 files changed, 2 insertions, 0 deletions
diff --git a/src/models.rs b/src/models.rs index 3ad4a5ed9d7d..006596fd8331 100644 --- a/src/models.rs +++ b/src/models.rs @@ -39,6 +39,7 @@ pub struct Thread { pub posted: DateTime<Utc>, pub sticky: bool, pub user_id: i32, + pub closed: bool, } #[derive(Identifiable, Queryable, Serialize, Associations)] diff --git a/src/schema.rs b/src/schema.rs index a824c658c00f..f163f4b1e7ea 100644 --- a/src/schema.rs +++ b/src/schema.rs @@ -33,6 +33,7 @@ table! { posted -> Timestamptz, sticky -> Bool, user_id -> Int4, + closed -> Bool, } } |