From 709eb44ccb8d08ad7f26cdac2932eadc7ccd48e7 Mon Sep 17 00:00:00 2001 From: Melody Horn / boringcactus Date: Fri, 18 Jun 2021 10:12:16 -0600 Subject: make model metadata available in AppConfig --- tests/tutorial/mod.rs | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) (limited to 'tests') diff --git a/tests/tutorial/mod.rs b/tests/tutorial/mod.rs index 0bd626e..fb05066 100644 --- a/tests/tutorial/mod.rs +++ b/tests/tutorial/mod.rs @@ -223,7 +223,7 @@ tosin = { path = "/home/cactus/Documents/tosin" } // update polls/models.rs fs::write("src/polls/models.rs", r#" -use tosin::db::models::{Model, Id}; +use tosin::db::models::{Model, Id, gather}; #[derive(Model)] pub struct Question { @@ -244,6 +244,8 @@ pub struct Choice { #[model(default = 0)] votes: usize, } + +gather!(); "#).unwrap(); // update main.rs -- cgit v1.2.3