createAt和UpdatedAt时间需要不同的时间
我在帆模型中使用autoCreatedAt和autoUpdatedAt。 当我创建数据时,它将在两个字段(created_at和updated_at)中存储创建时间。 当我更新数据时,它将在两个字段中存储更新的时间。 创建它时,两个字段都需要静态时间(应该创建时间)。当我更新时,它不会影响创建的时间。
created_at : {type:'ref',columnType:'datetime',autoCreatedAt:true},
updated_at : {type:'ref',columnType:'datetime',autoCreatedAt:true},
创建两个字段时,都会保存创建时间。 更新时,两个字段都将存储更新的时间。
答案 0 :(得分:0)
根据@Salketer注释,您的代码应为:
created_at : {type:'ref',columnType:'datetime',autoCreatedAt:true},
updated_at : {type:'ref',columnType:'datetime',autoUpdatedAt:true},
更多信息,位于Sails Documentation