diff --git a/src/main.rs b/src/main.rs index 84b2fc1..4ccb876 100644 --- a/src/main.rs +++ b/src/main.rs @@ -96,8 +96,7 @@ async fn connect_sqlite(path: &PathBuf) -> sqlx::Result { #[cfg(feature = "sqlite")] async fn load_sqlite_template(sqlite_handle: &mut SqliteConnection) -> sqlx::Result { - sqlx::query(&*format!( - "{} {} {} {} {} {}", + sqlx::query(concat!( include_str!("sqlite/users.sql"), include_str!("sqlite/security_preferences.sql"), include_str!("sqlite/privacy_preferences.sql"),