API/api.medcify.app/migrations/20220809121429-create-settings.js
2022-09-26 11:41:44 +05:30

39 lines
827 B
JavaScript

'use strict';
module.exports = {
async up(queryInterface, Sequelize) {
await queryInterface.createTable('settings', {
id: {
allowNull: false,
autoIncrement: true,
primaryKey: true,
type: Sequelize.INTEGER
},
razor_key: {
type: Sequelize.TEXT
},
razor_secretkey: {
type: Sequelize.TEXT
},
hook_url: {
type: Sequelize.TEXT
},
hook_secretkey: {
type: Sequelize.TEXT
},
status: {
type: Sequelize.INTEGER
},
createdAt: {
allowNull: false,
type: Sequelize.DATE
},
updatedAt: {
allowNull: false,
type: Sequelize.DATE
}
});
},
async down(queryInterface, Sequelize) {
await queryInterface.dropTable('settings');
}
};