Mysql
 sql >> Cơ Sở Dữ Liệu >  >> RDS >> Mysql

Không cập nhật cửa hàng

Xem tài liệu về tình huống của bạn

const Foo = sequelize.define('foo',  { /* bla */ }, {
  // don't forget to enable timestamps!
  timestamps: true,

  // I don't want createdAt
  createdAt: false,

  // I want updatedAt to actually be called updateTimestamp
  updatedAt: 'updateTimestamp',

  // And deletedAt to be called destroyTime (remember to enable paranoid for this to work)
  deletedAt: 'destroyTime',
  paranoid: true
})

Vì vậy, trong ví dụ trên, chỉ cần đặt timestamps thành true nhưng sau đó createdAt sai



  1. Database
  2.   
  3. Mysql
  4.   
  5. Oracle
  6.   
  7. Sqlserver
  8.   
  9. PostgreSQL
  10.   
  11. Access
  12.   
  13. SQLite
  14.   
  15. MariaDB
  1. Làm thế nào để sử dụng Enums trong Scala Slick?

  2. gạch nối theo thứ tự MySQL theo mệnh đề

  3. có một lựa chọn thực hiện 10 truy vấn trong học thuyết (Symfony)

  4. Glassfish 4 &MySQL &JSTL

  5. Làm thế nào để truy vấn cơ sở dữ liệu PHP / MySQL hoạt động chính xác?