42 lines
914 B
JavaScript
42 lines
914 B
JavaScript
|
'use strict';
|
||
|
module.exports = {
|
||
|
async up(queryInterface, Sequelize) {
|
||
|
await queryInterface.createTable('orderProcessHistories', {
|
||
|
id: {
|
||
|
allowNull: false,
|
||
|
autoIncrement: true,
|
||
|
primaryKey: true,
|
||
|
type: Sequelize.INTEGER
|
||
|
},
|
||
|
orderId: {
|
||
|
type: Sequelize.INTEGER
|
||
|
},
|
||
|
statusDate: {
|
||
|
type: Sequelize.DATE
|
||
|
},
|
||
|
processStatus: {
|
||
|
type: Sequelize.STRING
|
||
|
},
|
||
|
status: {
|
||
|
type: Sequelize.INTEGER
|
||
|
},
|
||
|
createdBy: {
|
||
|
type: Sequelize.INTEGER
|
||
|
},
|
||
|
updatedBy: {
|
||
|
type: Sequelize.INTEGER
|
||
|
},
|
||
|
createdAt: {
|
||
|
allowNull: false,
|
||
|
type: Sequelize.DATE
|
||
|
},
|
||
|
updatedAt: {
|
||
|
allowNull: false,
|
||
|
type: Sequelize.DATE
|
||
|
}
|
||
|
});
|
||
|
},
|
||
|
async down(queryInterface, Sequelize) {
|
||
|
await queryInterface.dropTable('orderProcessHistories');
|
||
|
}
|
||
|
};
|