Change Json property type from varchar(max) to text in ChineseNfoRegistry
All checks were successful
Docker Build & Deploy / Build Docker Image (push) Successful in 11s
Docker Build & Deploy / Deploy to Production (push) Successful in 5s

This commit is contained in:
孙诚
2025-04-03 16:25:06 +08:00
parent acb7330d82
commit 094793930c

View File

@@ -206,7 +206,8 @@ public class TheMovieDbRecord
public TheMovieDbLanguage Language { get; set; } public TheMovieDbLanguage Language { get; set; }
[Column(DbType = "varchar(max)")] public string Json { get; set; } = string.Empty; [Column(DbType = "text")]
public string Json { get; set; } = string.Empty;
} }
public enum TheMovieDbType public enum TheMovieDbType