aboutsummaryrefslogtreecommitdiff
path: root/backend/src/schema.rs
diff options
context:
space:
mode:
authorAkshay <[email protected]>2020-12-26 14:43:19 +0000
committerAkshay <[email protected]>2020-12-26 14:43:19 +0000
commita7881f40ccaa623d757e762d1215d5e9bc9d1a7a (patch)
tree010712299e6b0735c162edb8a73f1be612c4d7f1 /backend/src/schema.rs
parent8014def1a8da3397d78d1162f9e1b8c3f22d0322 (diff)
add AR integration
Diffstat (limited to 'backend/src/schema.rs')
-rw-r--r--backend/src/schema.rs2
1 files changed, 2 insertions, 0 deletions
diff --git a/backend/src/schema.rs b/backend/src/schema.rs
index 1419bc0..5cd3a73 100644
--- a/backend/src/schema.rs
+++ b/backend/src/schema.rs
@@ -24,6 +24,8 @@ table! {
24 kind -> Nullable<Varchar>, 24 kind -> Nullable<Varchar>,
25 price -> Float, 25 price -> Float,
26 description -> Nullable<Varchar>, 26 description -> Nullable<Varchar>,
27 src -> Nullable<Text>,
28 ios_src -> Nullable<Text>,
27 } 29 }
28} 30}
29 31