0
sequelizeとNodeJSを使用してfirst_name
とlast_name
を小文字で挿入する必要があります。 すべてのエントリを小文字にするモデルを定義するにはどうすればよいですか?あなたが探しているもの挿入されたすべてのエントリが小文字になるようなSequelizeモデルを定義する
const Users = sequelize.define('users', {
id: {
type: Sequelize.INTEGER,
primaryKey: true,
},
mobile : {
type: Sequelize.STRING,
}
first_name: {
type: Sequelize.STRING,
},
last_name :{
type: Sequelize.STRING,
},
email :{
type: Sequelize.STRING,
}
},
{
freezeTableName: true // Model tableName will be the same as the model name
},
{
where: {
$and: [
sequelize.where(sequelize.fn('lower', sequelize.col('first_name'))),
sequelize.where(sequelize.fn('lower', sequelize.col('last_name')))
]
}
}
);
あなたの質問は、実際のMySQLとは何かを持っていますか? –
私はmysqlデータベースのsequelizeを使用 –