mirror of
https://github.com/Ombi-app/Ombi.git
synced 2025-08-21 13:53:19 -07:00
Added the support for TV Series integrating with Sonarr
This commit is contained in:
parent
31615ff69c
commit
5dd9885885
15 changed files with 250 additions and 10 deletions
|
@ -58,7 +58,7 @@ namespace PlexRequests.Store
|
|||
return false;
|
||||
}
|
||||
|
||||
public string DbFile = "RequestPlex.sqlite";
|
||||
public string DbFile = "PlexRequests.sqlite";
|
||||
|
||||
/// <summary>
|
||||
/// Gets the database connection.
|
||||
|
|
|
@ -23,6 +23,7 @@ namespace PlexRequests.Store
|
|||
public bool Available { get; set; }
|
||||
public IssueState Issues { get; set; }
|
||||
public string OtherMessage { get; set; }
|
||||
public bool LatestTv { get; set; }
|
||||
}
|
||||
|
||||
public enum RequestType
|
||||
|
|
|
@ -28,6 +28,7 @@ CREATE TABLE IF NOT EXISTS Requested
|
|||
ReleaseDate varchar(50) NOT NULL,
|
||||
Status varchar(50) NOT NULL,
|
||||
Approved INTEGER NOT NULL,
|
||||
LatestTv INTEGER NOT NULL,
|
||||
RequestedBy varchar(50),
|
||||
RequestedDate varchar(50) NOT NULL,
|
||||
Available INTEGER(50),
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue