diff --git a/src/Infrastructure/TakeoutSaaS.Infrastructure/App/Persistence/TakeoutAppDbContext.cs b/src/Infrastructure/TakeoutSaaS.Infrastructure/App/Persistence/TakeoutAppDbContext.cs index b8be890..990feb1 100644 --- a/src/Infrastructure/TakeoutSaaS.Infrastructure/App/Persistence/TakeoutAppDbContext.cs +++ b/src/Infrastructure/TakeoutSaaS.Infrastructure/App/Persistence/TakeoutAppDbContext.cs @@ -460,7 +460,7 @@ public sealed class TakeoutAppDbContext( builder.Property(x => x.ContactPhone).HasMaxLength(32); builder.Property(x => x.ContactEmail).HasMaxLength(128); builder.Property(x => x.Industry).HasMaxLength(64); - builder.Property(x => x.LogoUrl).HasMaxLength(256); + builder.Property(x => x.LogoUrl).HasColumnType("text"); builder.Property(x => x.Remarks).HasMaxLength(512); builder.HasIndex(x => x.Code).IsUnique(); builder.HasIndex(x => x.ContactPhone).IsUnique();