mirror of
https://github.com/bitwarden/server.git
synced 2025-04-05 13:08:17 -05:00
Fix SQL Server
This commit is contained in:
parent
acce29902a
commit
8c689bd70f
@ -711,7 +711,7 @@ public class CipherRepository : Repository<Cipher, Guid>, ICipherRepository
|
|||||||
row[creationDateColumn] = cipher.CreationDate;
|
row[creationDateColumn] = cipher.CreationDate;
|
||||||
row[revisionDateColumn] = cipher.RevisionDate;
|
row[revisionDateColumn] = cipher.RevisionDate;
|
||||||
row[deletedDateColumn] = cipher.DeletedDate.HasValue ? (object)cipher.DeletedDate : DBNull.Value;
|
row[deletedDateColumn] = cipher.DeletedDate.HasValue ? (object)cipher.DeletedDate : DBNull.Value;
|
||||||
row[repromptColumn] = cipher.Reprompt;
|
row[repromptColumn] = cipher.Reprompt.HasValue ? cipher.Reprompt.Value : DBNull.Value;
|
||||||
row[keyColummn] = cipher.Key;
|
row[keyColummn] = cipher.Key;
|
||||||
|
|
||||||
ciphersTable.Rows.Add(row);
|
ciphersTable.Rows.Add(row);
|
||||||
|
Loading…
x
Reference in New Issue
Block a user