Changed all MaxLength to be 64, 128, 256, or 2048 probably we need to review this

This commit is contained in:
Jonathan Bourdon
2024-08-04 21:52:09 -04:00
parent 143774340f
commit e617b5ffd3
9 changed files with 34 additions and 32 deletions

View File

@@ -39,12 +39,12 @@ namespace Hutopy.Web.Features.Messages.Migrations
b.Property<string>("CreatedByName")
.IsRequired()
.HasMaxLength(64)
.HasColumnType("character varying(64)");
.HasMaxLength(255)
.HasColumnType("character varying(255)");
b.Property<string>("CreatedByPortraitUrl")
.HasMaxLength(256)
.HasColumnType("character varying(256)");
.HasMaxLength(255)
.HasColumnType("character varying(255)");
b.Property<Guid?>("ParentId")
.HasColumnType("uuid");