123456789101112131415161718192021222324252627 |
- 'use strict';
- module.exports = {
- async up (queryInterface, Sequelize) {
- await queryInterface.addColumn('Articles', 'type', {
- type: Sequelize.INTEGER,
- allowNull: true,
- });
- await queryInterface.addColumn('Articles', 'img', {
- type: Sequelize.TEXT,
- allowNull: true,
- });
- await queryInterface.addColumn('Articles', 'date', {
- type: Sequelize.DATE,
- allowNull: true,
- });
- },
- async down (queryInterface, Sequelize) {
- await queryInterface.removeColumn('Articles', 'type');
- await queryInterface.removeColumn('Articles', 'img');
- await queryInterface.removeColumn('Articles', 'date');
- }
- };
|