mirror of
https://github.com/Ombi-app/Ombi.git
synced 2025-08-20 05:13:18 -07:00
Fixed the issue with user management, needed to implement our own authentication provider
This commit is contained in:
parent
63c2744336
commit
2a8927eb6d
46 changed files with 1132 additions and 565 deletions
|
@ -116,8 +116,11 @@ CREATE TABLE IF NOT EXISTS PlexUsers
|
|||
Id INTEGER PRIMARY KEY AUTOINCREMENT,
|
||||
PlexUserId varchar(100) NOT NULL,
|
||||
UserAlias varchar(100) NOT NULL,
|
||||
Permissions INTEGER,
|
||||
Features INTEGER
|
||||
Permissions INTEGER,
|
||||
Features INTEGER,
|
||||
Username VARCHAR(100),
|
||||
EmailAddress VARCHAR(100),
|
||||
LoginId VARCHAR(100)
|
||||
);
|
||||
CREATE UNIQUE INDEX IF NOT EXISTS PlexUsers_Id ON PlexUsers (Id);
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue