Files
starr-philproperties/database/migrations/20260101000066-add-description-to-tier-plans.js
T
kennethobsequio 1372f4e975 testing 101
Signed-off-by: Kenneth Obsequio <k80308392@gmail.com>
2026-06-30 19:31:45 +08:00

16 lines
334 B
JavaScript

'use strict';
module.exports = {
async up(queryInterface, Sequelize) {
await queryInterface.addColumn('tier_plans', 'description', {
type: Sequelize.TEXT,
allowNull: true,
after: 'label',
});
},
async down(queryInterface) {
await queryInterface.removeColumn('tier_plans', 'description');
},
};