mirror of
https://github.com/Ombi-app/Ombi.git
synced 2025-07-16 02:02:55 -07:00
Started on #483
This commit is contained in:
parent
ac02d24d65
commit
367ca391b1
7 changed files with 160 additions and 0 deletions
|
@ -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;
|
Loading…
Add table
Add a link
Reference in a new issue