| 12345678910111213 |
- import { QueryInterface, DataTypes } from "sequelize";
- module.exports = {
- up: (queryInterface: QueryInterface) => {
- return queryInterface.addColumn("Messages", "dataJson", {
- type: DataTypes.TEXT
- });
- },
- down: (queryInterface: QueryInterface) => {
- return queryInterface.removeColumn("Messages", "dataJson");
- }
- };
|