This commit is contained in:
tidusjar 2016-03-24 14:07:01 +00:00
commit 24781fbd1f
11 changed files with 166 additions and 31 deletions

View file

@ -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
);

View file

@ -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; }
}
}