Forgot to update database version in init.sql

This commit is contained in:
Grégory Soutadé 2012-02-26 14:23:25 +01:00
parent 1b378924a3
commit d89c7d90f1
1 changed files with 1 additions and 1 deletions

View File

@ -7,4 +7,4 @@ CREATE TABLE operation(id INTEGER PRIMARY KEY, parent REFERENCES operation(id),
CREATE TABLE category(id INTEGER PRIMARY KEY, user REFERENCES user(id), parent REFERENCES category(id), name VARCHAR(255), backcolor VARCHAR(10), forecolor VARCHAR(10), font VARCHAR(255), fix_cost CHAR(1));
CREATE TABLE preference(id INTEGER PRIMARY KEY, user REFERENCES user(id), name VARCHAR(255), value VARCHAR(255));
CREATE TABLE import_pattern(id INTEGER PRIMARY KEY, user REFERENCES user(id), description VARCHAR(255), pattern VARCHAR(255), account REFERENCES account(id), category REFERENCES category(id));
INSERT INTO kisscount ("db_version") VALUES ("2");
INSERT INTO kisscount ("db_version") VALUES ("3");