mirror of
https://github.com/Ombi-app/Ombi.git
synced 2025-08-14 02:26:55 -07:00
Started on the queue for requests #483 TV Requests with missing information has been completed
This commit is contained in:
parent
5a5f7f5610
commit
50dec5f530
14 changed files with 276 additions and 71 deletions
|
@ -136,10 +136,11 @@ 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,
|
||||
PrimaryIdentifier VARCHAR(100) NOT NULL,
|
||||
Type INTEGER NOT NULL,
|
||||
FaultType INTEGER NOT NULL,
|
||||
Content BLOB NOT NULL
|
||||
Content BLOB NOT NULL,
|
||||
LastRetry VARCHAR(100)
|
||||
);
|
||||
CREATE UNIQUE INDEX IF NOT EXISTS PlexUsers_Id ON PlexUsers (Id);
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue