sql >> データベース >  >> RDS >> Mysql

続編モデルでupdatedAtを保存しない

    あなたの状況に関する文書を見る

    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
    })
    

    したがって、上記の例では、timestampsを設定するだけです。 trueである しかし、その後createdAt 偽りになる



    1. 非常に大きなテーブルでのMySQLALTERTABLE-実行しても安全ですか?

    2. Unicode(ギリシャ語)文字は、??????のようにデータベースに保存されます。

    3. SQLServer2017のデータ型のリスト

    4. OracleでXLSX(Excel)ファイルを読み取ってインポートする