mirror of
https://github.com/bitwarden/server.git
synced 2025-06-30 15:42:48 -05:00
PM-10600: Missing Notification Center MaxLength on Body column (#5402)
This commit is contained in:
@ -1654,7 +1654,8 @@ namespace Bit.MySqlMigrations.Migrations
|
||||
.HasColumnType("char(36)");
|
||||
|
||||
b.Property<string>("Body")
|
||||
.HasColumnType("longtext");
|
||||
.HasMaxLength(3000)
|
||||
.HasColumnType("varchar(3000)");
|
||||
|
||||
b.Property<byte>("ClientType")
|
||||
.HasColumnType("tinyint unsigned");
|
||||
|
Reference in New Issue
Block a user