password hashing
This commit is contained in:
@ -65,7 +65,7 @@
|
||||
</Key>
|
||||
<Property Name="ID" Type="int" StoreGeneratedPattern="Identity" Nullable="false" />
|
||||
<Property Name="usename" Type="nvarchar" MaxLength="50" Nullable="false" />
|
||||
<Property Name="password" Type="nvarchar" MaxLength="50" Nullable="false" />
|
||||
<Property Name="password" Type="nvarchar(max)" Nullable="false" />
|
||||
<Property Name="displayname" Type="nvarchar" MaxLength="50" />
|
||||
<Property Name="role" Type="int" Nullable="false" />
|
||||
</EntityType>
|
||||
@ -139,7 +139,7 @@
|
||||
</Key>
|
||||
<Property Name="ID" Type="Int32" Nullable="false" annotation:StoreGeneratedPattern="Identity" />
|
||||
<Property Name="usename" Type="String" Nullable="false" MaxLength="50" FixedLength="false" Unicode="true" />
|
||||
<Property Name="password" Type="String" Nullable="false" MaxLength="50" FixedLength="false" Unicode="true" />
|
||||
<Property Name="password" Type="String" Nullable="false" MaxLength="Max" FixedLength="false" Unicode="true" />
|
||||
<Property Name="displayname" Type="String" MaxLength="50" FixedLength="false" Unicode="true" />
|
||||
<Property Name="role" Type="Int32" Nullable="false" />
|
||||
</EntityType>
|
||||
|
||||
Reference in New Issue
Block a user