feat: refine content calendar experience

This commit is contained in:
2026-05-05 23:25:58 -04:00
parent b66c10b681
commit a7535d460d
72 changed files with 3233 additions and 1310 deletions

View File

@@ -13,6 +13,11 @@ public static class CommentModelConfiguration
comment.Property(x => x.AuthorDisplayName).HasMaxLength(256).IsRequired();
comment.Property(x => x.AuthorEmail).HasMaxLength(256).IsRequired();
comment.Property(x => x.Body).HasMaxLength(4000).IsRequired();
comment.Property(x => x.AttachmentFileName).HasMaxLength(256);
comment.Property(x => x.AttachmentContentType).HasMaxLength(128);
comment.Property(x => x.AttachmentBlobContainerName).HasMaxLength(128);
comment.Property(x => x.AttachmentBlobName).HasMaxLength(512);
comment.Property(x => x.AttachmentBlobUrl).HasMaxLength(1024);
comment.Property(x => x.CreatedAt)
.ValueGeneratedOnAdd()
.HasDefaultValueSql("CURRENT_TIMESTAMP");