참고 코드 - 모델
module.exports = (sequelize, DataTypes) => { const Order = sequelize.define('order', { id: { type: DataTypes.INTEGER, primaryKey: true, autoIncrement: true }, order_id: { type: DataTypes.STRING, unique: true, }, order_date: { type: DataTypes.DATE }, product_name: { type: DataTypes.STRING }, amount: { type: DataTypes.INTEGER }, shop_linker: { type: DataTypes.STRING }, is_complete: { type: DataTyp..
더보기