Files
starr-philproperties/database/migrations/20270101000093-add-tier-plans-is-recommended.js
T
kennethobsequio 1029177a91 add more things
Signed-off-by: Kenneth Obsequio <k80308392@gmail.com>
2026-08-14 02:21:14 +08:00

16 lines
349 B
JavaScript

'use strict';
module.exports = {
async up(queryInterface, Sequelize) {
await queryInterface.addColumn('tier_plans', 'is_recommended', {
type: Sequelize.BOOLEAN,
allowNull: false,
defaultValue: false,
});
},
async down(queryInterface) {
await queryInterface.removeColumn('tier_plans', 'is_recommended');
},
};