mirror of
https://github.com/bitwarden/server
synced 2025-12-14 23:33:41 +00:00
Device deactivation (#4963)
* Device deactivation * Check active status in service * Format and work around potential deadlocks
This commit is contained in:
@@ -928,6 +928,10 @@ namespace Bit.SqliteMigrations.Migrations
|
||||
.ValueGeneratedOnAdd()
|
||||
.HasColumnType("TEXT");
|
||||
|
||||
b.Property<bool>("Active")
|
||||
.HasColumnType("INTEGER")
|
||||
.HasDefaultValue(true);
|
||||
|
||||
b.Property<DateTime>("CreationDate")
|
||||
.HasColumnType("TEXT");
|
||||
|
||||
|
||||
Reference in New Issue
Block a user