Schema update not necessary for new settings, save will create them.

This commit is contained in:
Mike Dilger 2023-01-09 19:10:26 +13:00
parent 010b9b7e65
commit a5fcf6e5b4
2 changed files with 0 additions and 2 deletions

View File

@ -110,7 +110,6 @@ fn upgrade(db: &Connection, mut version: u16) -> Result<(), Error> {
apply_sql!(db, version, 6, "schema6.sql");
apply_sql!(db, version, 7, "schema7.sql");
apply_sql!(db, version, 8, "schema8.sql");
apply_sql!(db, version, 9, "schema9.sql");
tracing::info!("Database is at version {}", version);
Ok(())
}

View File

@ -1 +0,0 @@
INSERT INTO settings (key, value) values ('light_mode', '1');