Some more work. Need to stop the form submitting on a request

This commit is contained in:
tidusjar 2016-02-26 17:29:20 +00:00
commit 96a3970a53
7 changed files with 106 additions and 8 deletions

View file

@ -12,4 +12,11 @@ CREATE TABLE IF NOT EXISTS Settings
(
Id INTEGER PRIMARY KEY AUTOINCREMENT,
Port INTEGER NOT NULL
);
CREATE TABLE IF NOT EXISTS Requested
(
Id INTEGER PRIMARY KEY AUTOINCREMENT,
Type INTEGER NOT NULL,
Tmdbid INTEGER NOT NULL
);