From 685b47247aad71468f190c42929ca6f0dce843fa Mon Sep 17 00:00:00 2001 From: Melody Horn / boringcactus Date: Wed, 16 Jun 2021 12:36:47 -0600 Subject: make database backends generic --- examples/tutorial02/polls/mod.rs | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) (limited to 'examples/tutorial02/polls/mod.rs') diff --git a/examples/tutorial02/polls/mod.rs b/examples/tutorial02/polls/mod.rs index f4fde54..4b5de71 100644 --- a/examples/tutorial02/polls/mod.rs +++ b/examples/tutorial02/polls/mod.rs @@ -1,5 +1,6 @@ use tosin::apps::AppConfig; +mod migrations; pub mod models; pub mod urls; pub mod views; @@ -7,5 +8,5 @@ pub mod views; pub use urls::urls; pub const APP: AppConfig = AppConfig { - + migrations: migrations::migrations, }; -- cgit v1.2.3