1
0
mirror of https://github.com/bitwarden/server.git synced 2025-07-07 19:05:07 -05:00

Add Notes column to OrganizationSponsorships table

This commit is contained in:
Jonas Hendrickx
2025-03-26 10:29:53 +01:00
parent c457b0bb9c
commit bbb109cba8
26 changed files with 120 additions and 40 deletions

View File

@ -1258,6 +1258,9 @@ namespace Bit.MySqlMigrations.Migrations
b.Property<DateTime?>("LastSyncDate")
.HasColumnType("datetime(6)");
b.Property<string>("Notes")
.HasColumnType("longtext");
b.Property<string>("OfferedToEmail")
.HasMaxLength(256)
.HasColumnType("varchar(256)");