Mysql
 sql >> डेटाबेस >  >> RDS >> Mysql

सीक्वेलाइज़ को एकवचन तालिका नामों का उपयोग कैसे करें

दस्तावेज़ बताएं कि आप संपत्ति का उपयोग कर सकते हैं freezeTableName

कृपया इस उदाहरण पर एक नज़र डालें:

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. Database
  2.   
  3. Mysql
  4.   
  5. Oracle
  6.   
  7. Sqlserver
  8.   
  9. PostgreSQL
  10.   
  11. Access
  12.   
  13. SQLite
  14.   
  15. MariaDB
  1. एक MySQL डेटाबेस बनाएँ

  2. बैकअप MySQL उपयोगकर्ता

  3. बच्चों की सभी आईडी पुनरावर्ती रूप से कैसे खोजें?

  4. MySQL डेटाबेस प्रदर्शन देने के लिए युक्तियाँ - भाग एक

  5. MySQL में बड़ी SQL फ़ाइलें आयात करना