From 094793930c7be9269a5a71bc379d9a961ee401da Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=E5=AD=99=E8=AF=9A?= Date: Thu, 3 Apr 2025 16:25:06 +0800 Subject: [PATCH] Change Json property type from varchar(max) to text in ChineseNfoRegistry --- src/Service/Jobs/ChineseNfoRegistry.cs | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/src/Service/Jobs/ChineseNfoRegistry.cs b/src/Service/Jobs/ChineseNfoRegistry.cs index 7621d4c..e6d0056 100644 --- a/src/Service/Jobs/ChineseNfoRegistry.cs +++ b/src/Service/Jobs/ChineseNfoRegistry.cs @@ -206,7 +206,8 @@ public class TheMovieDbRecord 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