mirror of
https://github.com/Ombi-app/Ombi.git
synced 2025-08-21 05:43:19 -07:00
Merge
This commit is contained in:
commit
bee57b46ff
24 changed files with 418 additions and 78 deletions
|
@ -8,5 +8,7 @@ namespace RequestPlex.Store
|
|||
public class SettingsModel : Entity
|
||||
{
|
||||
public int Port { get; set; }
|
||||
public bool UserAuthentication { get; set; }
|
||||
public string PlexAuthToken { get; set; }
|
||||
}
|
||||
}
|
||||
|
|
|
@ -11,7 +11,9 @@ CREATE TABLE IF NOT EXISTS User
|
|||
CREATE TABLE IF NOT EXISTS Settings
|
||||
(
|
||||
Id INTEGER PRIMARY KEY AUTOINCREMENT,
|
||||
Port INTEGER NOT NULL
|
||||
Port INTEGER NOT NULL,
|
||||
UserAuthentication INTEGER NOT NULL,
|
||||
PlexAuthToken varchar(50)
|
||||
);
|
||||
|
||||
CREATE TABLE IF NOT EXISTS Requested
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue