sql >> Databáze >  >> RDS >> Mysql

Jak přimět Sequelize používat jednotné názvy tabulek

The dokumenty uveďte, že můžete použít vlastnost freezeTableName .

Podívejte se prosím na tento příklad:

var Bar = sequelize.define('Bar', { /* bla */ }, {
  // don't add the timestamp attributes (updatedAt, createdAt)
  timestamps: false,

  // don't delete database entries but set the newly added attribute deletedAt
  // to the current date (when deletion was done). paranoid will only work if
  // timestamps are enabled
  paranoid: true,

  // don't use camelcase for automatically added attributes but underscore style
  // so updatedAt will be updated_at
  underscored: true,

  // disable the modification of tablenames; By default, sequelize will automatically
  // transform all passed model names (first parameter of define) into plural.
  // if you don't want that, set the following
  freezeTableName: true,

  // define the table's name
  tableName: 'my_very_custom_table_name'
})


  1. Jak zobrazit seznam souborů ve složce s SQL Server

  2. Příklady GETUTCDATE() v SQL Server (T-SQL)

  3. Proč je připojení MySQL blokováno mnoha chybami připojení?

  4. připojte java k mysql pomocí jdbc na osx