60 lines
1.2 KiB
JavaScript
60 lines
1.2 KiB
JavaScript
|
'use strict';
|
||
|
module.exports = {
|
||
|
async up(queryInterface, Sequelize) {
|
||
|
await queryInterface.createTable('carts', {
|
||
|
id: {
|
||
|
allowNull: false,
|
||
|
autoIncrement: true,
|
||
|
primaryKey: true,
|
||
|
type: Sequelize.INTEGER
|
||
|
},
|
||
|
userId: {
|
||
|
type: Sequelize.STRING
|
||
|
},
|
||
|
storeId: {
|
||
|
type: Sequelize.INTEGER
|
||
|
},
|
||
|
medicineId: {
|
||
|
type: Sequelize.INTEGER
|
||
|
},
|
||
|
medAmt: {
|
||
|
type: Sequelize.DOUBLE
|
||
|
},
|
||
|
pres_required: {
|
||
|
type: Sequelize.INTEGER
|
||
|
},
|
||
|
quantity: {
|
||
|
type: Sequelize.INTEGER
|
||
|
},
|
||
|
amount: {
|
||
|
type: Sequelize.STRING
|
||
|
},
|
||
|
discount: {
|
||
|
type: Sequelize.STRING
|
||
|
},
|
||
|
total: {
|
||
|
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('carts');
|
||
|
}
|
||
|
};
|