mirror of
https://github.com/bitwarden/server.git
synced 2025-06-30 07:36:14 -05:00
PM-10600: Missing Notification Center MaxLength on Body column (#5402)
This commit is contained in:
2999
util/SqliteMigrations/Migrations/20250213120814_NotificationCenterBodyLength.Designer.cs
generated
Normal file
2999
util/SqliteMigrations/Migrations/20250213120814_NotificationCenterBodyLength.Designer.cs
generated
Normal file
File diff suppressed because it is too large
Load Diff
@ -0,0 +1,21 @@
|
||||
using Microsoft.EntityFrameworkCore.Migrations;
|
||||
|
||||
#nullable disable
|
||||
|
||||
namespace Bit.SqliteMigrations.Migrations;
|
||||
|
||||
/// <inheritdoc />
|
||||
public partial class NotificationCenterBodyLength : Migration
|
||||
{
|
||||
/// <inheritdoc />
|
||||
protected override void Up(MigrationBuilder migrationBuilder)
|
||||
{
|
||||
|
||||
}
|
||||
|
||||
/// <inheritdoc />
|
||||
protected override void Down(MigrationBuilder migrationBuilder)
|
||||
{
|
||||
|
||||
}
|
||||
}
|
@ -1643,6 +1643,7 @@ namespace Bit.SqliteMigrations.Migrations
|
||||
.HasColumnType("TEXT");
|
||||
|
||||
b.Property<string>("Body")
|
||||
.HasMaxLength(3000)
|
||||
.HasColumnType("TEXT");
|
||||
|
||||
b.Property<byte>("ClientType")
|
||||
|
Reference in New Issue
Block a user