瀏覽代碼

update Admin.NET/Admin.NET.Core/Entity/EntityBase.cs.
建议将CreateTime恢复为允许非空,否则对已有表初始化会报字段有索引依赖异常。5月底有其他人将DateTime?改为DateTime,其实不需要改也可以吧,业务自己用datetime.value他就是个DateTime类型

Signed-off-by: LLL <422235757@qq.com>

LLL 1 年之前
父節點
當前提交
2bdbc9c7b8
共有 1 個文件被更改,包括 1 次插入1 次删除
  1. 1 1
      Admin.NET/Admin.NET.Core/Entity/EntityBase.cs

+ 1 - 1
Admin.NET/Admin.NET.Core/Entity/EntityBase.cs

@@ -27,7 +27,7 @@ public abstract class EntityBase : EntityBaseId, IDeletedFilter
     /// <summary>
     /// 创建时间
     /// </summary>
-    [SugarColumn(ColumnDescription = "创建时间", IsOnlyIgnoreUpdate = true, InsertServerTime = true)]
+    [SugarColumn(ColumnDescription = "创建时间", IsNullable = true, IsOnlyIgnoreUpdate = true, InsertServerTime = true)]
     public virtual DateTime CreateTime { get; set; }
 
     /// <summary>