mirror of
https://github.com/Ombi-app/Ombi.git
synced 2025-08-21 13:53:19 -07:00
Finished #49
This commit is contained in:
parent
2d016315c7
commit
24781fbd1f
11 changed files with 166 additions and 31 deletions
|
@ -7,7 +7,8 @@ CREATE TABLE IF NOT EXISTS Users
|
|||
UserName varchar(50) NOT NULL,
|
||||
Salt BLOB NOT NULL,
|
||||
Hash BLOB NOT NULL,
|
||||
Claims BLOB NOT NULL
|
||||
Claims BLOB NOT NULL,
|
||||
UserProperties BLOB
|
||||
);
|
||||
|
||||
|
||||
|
|
|
@ -33,6 +33,7 @@ namespace PlexRequests.Store
|
|||
{
|
||||
public byte[] Hash { get; set; }
|
||||
public byte[] Salt { get; set; }
|
||||
public string[] Claims { get; set; }
|
||||
public byte[] Claims { get; set; }
|
||||
public byte[] UserProperties { get; set; }
|
||||
}
|
||||
}
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue