diff options
Diffstat (limited to 'src/main.rs')
-rw-r--r-- | src/main.rs | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/src/main.rs b/src/main.rs index 0786f46..18713bb 100644 --- a/src/main.rs +++ b/src/main.rs @@ -32,6 +32,7 @@ async fn main() -> Result<(), Box<dyn std::error::Error + Send + Sync>> { .unwrap_or_else(|_| { panic!("Error while openning DB: {}", config.db_path) }); + db::utils::support_foreign_keys(&db_conn).await; let assets = assets::get(); |