import { QueryInterface, DataTypes } from "sequelize"; module.exports = { up: (queryInterface: QueryInterface) => { return queryInterface.renameTable("StatusChatEnd", "StatusChatEnds"); }, down: (queryInterface: QueryInterface) => { return queryInterface.renameTable("StatusChatEnds", "StatusChatEnd"); } };