1
0
mirror of https://github.com/bitwarden/server.git synced 2025-07-09 03:43:51 -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

@ -1247,6 +1247,9 @@ namespace Bit.SqliteMigrations.Migrations
b.Property<DateTime?>("LastSyncDate")
.HasColumnType("TEXT");
b.Property<string>("Notes")
.HasColumnType("TEXT");
b.Property<string>("OfferedToEmail")
.HasMaxLength(256)
.HasColumnType("TEXT");