Added a DBSchema so we have an easier way to update the DB

This commit is contained in:
tidusjar 2016-04-01 22:13:12 +01:00
commit 425302ba12
7 changed files with 116 additions and 4 deletions

View file

@ -40,3 +40,9 @@ CREATE TABLE IF NOT EXISTS Logs
Exception varchar(100) NOT NULL
);
CREATE UNIQUE INDEX IF NOT EXISTS Logs_Id ON Logs (Id);
CREATE TABLE IF NOT EXISTS DBInfo
(
SchemaVersion INTEGER
);