Config Pages, functions and tables added

This commit is contained in:
Patrick McDonagh
2016-02-05 14:58:51 -06:00
parent 851a90283f
commit ca5fc9c743
10 changed files with 348 additions and 22 deletions

View File

@@ -16,3 +16,10 @@ CREATE TABLE IF NOT EXISTS vals (
val REAL,
dateAdded TIMESTAMP DEFAULT CURRENT_TIMESTAMP
);
CREATE TABLE IF NOT EXISTS config (
id INTEGER PRIMARY KEY,
parameter TEXT,
val TEXT,
dateAdded TIMESTAMP DEFAULT CURRENT_TIMESTAMP
);