📜  如何阻止自动生成自动 createdAt updateAt - 任何代码示例

📅  最后修改于: 2022-03-11 14:57:49.245000             🧑  作者: Mango

代码示例1
var user = sequelize.define('user', { /* bla */ }, {
  // don't add the timestamp attributes (updatedAt, createdAt)
  timestamps: false,
  // your other configuration here
});