1
0
mirror of https://github.com/bitwarden/server synced 2025-12-10 21:33:41 +00:00

PM-10600: Missing Notification Center MaxLength on Body column (#5402)

This commit is contained in:
Maciej Zieniuk
2025-02-13 14:14:55 +01:00
committed by GitHub
parent 459c91a5a9
commit 0c482eea32
9 changed files with 9129 additions and 2 deletions

View File

@@ -1660,7 +1660,8 @@ namespace Bit.PostgresMigrations.Migrations
.HasColumnType("uuid");
b.Property<string>("Body")
.HasColumnType("text");
.HasMaxLength(3000)
.HasColumnType("character varying(3000)");
b.Property<byte>("ClientType")
.HasColumnType("smallint");