1
0
mirror of https://github.com/bitwarden/server.git synced 2025-06-30 15:42:48 -05:00

chore(db): add Installation.LastActivityDate column (#5060)

* chore(mssql): add `Installation.LastActivityDate` column

* chore(ef): add `Installation.LastActivityDate` column
This commit is contained in:
Addison Beck
2024-12-13 16:04:55 -05:00
committed by GitHub
parent 141a046a28
commit a8091bf585
14 changed files with 9014 additions and 14 deletions

View File

@ -1165,6 +1165,9 @@ namespace Bit.MySqlMigrations.Migrations
.HasMaxLength(150)
.HasColumnType("varchar(150)");
b.Property<DateTime?>("LastActivityDate")
.HasColumnType("datetime(6)");
b.HasKey("Id");
b.ToTable("Installation", (string)null);