mirror of
https://github.com/bitwarden/server.git
synced 2025-06-30 07:36:14 -05:00
Device deactivation (#4963)
* Device deactivation * Check active status in service * Format and work around potential deadlocks
This commit is contained in:
@ -939,6 +939,10 @@ namespace Bit.MySqlMigrations.Migrations
|
||||
.ValueGeneratedOnAdd()
|
||||
.HasColumnType("char(36)");
|
||||
|
||||
b.Property<bool>("Active")
|
||||
.HasColumnType("tinyint(1)")
|
||||
.HasDefaultValue(true);
|
||||
|
||||
b.Property<DateTime>("CreationDate")
|
||||
.HasColumnType("datetime(6)");
|
||||
|
||||
|
Reference in New Issue
Block a user