This commit is contained in:
Jamie.Rees 2016-11-07 14:46:44 +00:00
parent ac02d24d65
commit 367ca391b1
7 changed files with 160 additions and 0 deletions

View file

@ -131,4 +131,15 @@ CREATE TABLE IF NOT EXISTS PlexEpisodes
);
CREATE UNIQUE INDEX IF NOT EXISTS PlexEpisodes_Id ON PlexEpisodes (Id);
CREATE INDEX IF NOT EXISTS PlexEpisodes_ProviderId ON PlexEpisodes (ProviderId);
CREATE TABLE IF NOT EXISTS RequestQueue
(
Id INTEGER PRIMARY KEY AUTOINCREMENT,
PrimaryIdentifier INTEGER NOT NULL,
Type INTEGER NOT NULL,
Content BLOB NOT NULL
);
CREATE UNIQUE INDEX IF NOT EXISTS PlexUsers_Id ON PlexUsers (Id);
COMMIT;