diff --git a/resources/misc/db_init_mysql.sql b/resources/misc/db_init_mysql.sql index 4f4ec7dc1..5591faa24 100644 --- a/resources/misc/db_init_mysql.sql +++ b/resources/misc/db_init_mysql.sql @@ -12,7 +12,7 @@ CREATE TABLE IF NOT EXISTS Information ( inf_value TEXT NOT NULL ); -- ! -INSERT INTO Information VALUES (1, 'schema_version', '3'); +INSERT INTO Information VALUES (1, 'schema_version', '4'); -- ! INSERT INTO Information (inf_key, inf_value) VALUES ('standard_account_enabled', 1); -- ! diff --git a/resources/misc/db_init_sqlite.sql b/resources/misc/db_init_sqlite.sql index 99e4b1363..19a75d686 100644 --- a/resources/misc/db_init_sqlite.sql +++ b/resources/misc/db_init_sqlite.sql @@ -6,7 +6,7 @@ CREATE TABLE IF NOT EXISTS Information ( inf_value TEXT NOT NULL ); -- ! -INSERT INTO Information VALUES (1, 'schema_version', '3'); +INSERT INTO Information VALUES (1, 'schema_version', '4'); -- ! INSERT INTO Information (inf_key, inf_value) VALUES ('standard_account_enabled', 1); -- !