mirror of
https://github.com/Ombi-app/Ombi.git
synced 2025-08-20 05:13:18 -07:00
Small bit of work for #359
This commit is contained in:
parent
3650c4f943
commit
eba1570399
6 changed files with 144 additions and 1 deletions
|
@ -91,4 +91,12 @@ CREATE TABLE IF NOT EXISTS RequestLimit
|
|||
RequestCount INTEGER NOT NULL,
|
||||
RequestType INTEGER NOT NULL
|
||||
);
|
||||
CREATE UNIQUE INDEX IF NOT EXISTS RequestLimit_Id ON RequestLimit (Id);
|
||||
CREATE UNIQUE INDEX IF NOT EXISTS RequestLimit_Id ON RequestLimit (Id);
|
||||
|
||||
CREATE TABLE IF NOT EXISTS PlexUsers
|
||||
(
|
||||
Id INTEGER PRIMARY KEY AUTOINCREMENT,
|
||||
PlexUserId INTEGER NOT NULL,
|
||||
UserAlias varchar(100) NOT NULL
|
||||
);
|
||||
CREATE UNIQUE INDEX IF NOT EXISTS PlexUsers_Id ON RequestLimit (Id);
|
Loading…
Add table
Add a link
Reference in a new issue