guhongwei 4 lat temu
rodzic
commit
290d44a437
1 zmienionych plików z 1 dodań i 1 usunięć
  1. 1 1
      app/model/channel.js

+ 1 - 1
app/model/channel.js

@@ -18,7 +18,7 @@ const Channel = {
   sponsor: { type: String, required: false, maxLength: 200 }, // 主办方
   organizer: { type: String, required: false, maxLength: 200 }, // 承办方
   desc: { type: String, maxLength: 1000 }, // 简介
-  create_time: { type: String, required: true, maxLength: 200 }, // 创建时间
+  create_time: { type: String, required: false, maxLength: 200 }, // 创建时间
   image_path: { type: String, required: false }, // 图片路径
   videodata: { type: [ videos ], default: [] }, // vip用户
 };