Add frontend tests and other stuff
[recipes.git] / backend / src / model.rs
index 719ed21..d0f95d2 100644 (file)
@@ -1,5 +1,5 @@
 pub struct Recipe {\r
-    pub id: i32,\r
+    pub id: i64,\r
     pub title: String,\r
     pub description: Option<String>,\r
     pub estimate_time: Option<i32>, // [min].\r
@@ -10,7 +10,7 @@ pub struct Recipe {
 }\r
 \r
 impl Recipe {\r
-    pub fn new(id: i32, title: String, description: Option<String>) -> Recipe {\r
+    pub fn new(id: i64, title: String, description: Option<String>) -> Recipe {\r
         Recipe {\r
             id,\r
             title,\r