import { QueryInterface, DataTypes } from "sequelize"; module.exports = { up: (queryInterface: QueryInterface) => { return queryInterface.changeColumn("SettingTickets", "message", { type: DataTypes.STRING(3000), allowNull: true }); }, down: (queryInterface: QueryInterface) => { return queryInterface.changeColumn("SettingTickets", "message", { type: DataTypes.STRING, allowNull: true }); } };