summaryrefslogtreecommitdiff
path: root/src/schema.rs
diff options
context:
space:
mode:
authortom barrett <spalf0@gmail.com>2019-04-02 04:53:54 -0500
committertom barrett <spalf0@gmail.com>2019-04-02 04:53:54 -0500
commit9e1cc5ab923492570a84ac35fe573d22c051f86b (patch)
tree8a4371560b0051920aef2c74f0d91636377b147f /src/schema.rs
parent810c77ba30c65215c2d5e4b6f8a73f3b73e2b152 (diff)
added last_modified to database entry
Diffstat (limited to 'src/schema.rs')
-rw-r--r--src/schema.rs1
1 files changed, 1 insertions, 0 deletions
diff --git a/src/schema.rs b/src/schema.rs
index c258603..f6ec1f7 100644
--- a/src/schema.rs
+++ b/src/schema.rs
@@ -3,5 +3,6 @@ table! {
id -> Nullable<Integer>,
name -> Varchar,
mass -> Varchar,
+ last_modified -> Timestamp,
}
}