Added initial schema 4 updates - fix.

This commit is contained in:
Martin Rotter 2015-11-29 14:33:53 +01:00
parent c9953e10d0
commit 165fb68eff
4 changed files with 4 additions and 4 deletions

View File

@ -14,7 +14,7 @@ CREATE TABLE IF NOT EXISTS Information (
-- !
INSERT INTO Information VALUES (1, 'schema_version', '3');
-- !
INSERT INTO Information VALUES (1, 'standard_account_enabled', 1);
INSERT INTO Information (inf_key, inf_value) VALUES ('standard_account_enabled', 1);
-- !
DROP TABLE IF EXISTS Categories;
-- !

View File

@ -8,7 +8,7 @@ CREATE TABLE IF NOT EXISTS Information (
-- !
INSERT INTO Information VALUES (1, 'schema_version', '3');
-- !
INSERT INTO Information VALUES (1, 'standard_account_enabled', 1);
INSERT INTO Information (inf_key, inf_value) VALUES ('standard_account_enabled', 1);
-- !
DROP TABLE IF EXISTS Categories;
-- !

View File

@ -1 +1 @@
INSERT INTO Information VALUES (1, 'standard_account_enabled', 1);
INSERT INTO Information (inf_key, inf_value) VALUES ('standard_account_enabled', 1);

View File

@ -1 +1 @@
INSERT INTO Information VALUES (1, 'standard_account_enabled', 1);
INSERT INTO Information (inf_key, inf_value) VALUES ('standard_account_enabled', 1);