1234567891011121314151617181920212223242526272829303132 |
- 'use strict';
- /** @type {import('sequelize-cli').Migration} */
- module.exports = {
- async up(queryInterface, Sequelize) {
- await queryInterface.createTable('Articles', {
- id: {
- allowNull: false,
- autoIncrement: true,
- primaryKey: true,
- type: Sequelize.INTEGER
- },
- title: {
- type: Sequelize.STRING,
- allowNull:false
- },
- content: {
- type: Sequelize.TEXT
- },
- createdAt: {
- allowNull: false,
- type: Sequelize.DATE
- },
- updatedAt: {
- allowNull: false,
- type: Sequelize.DATE
- }
- });
- },
- async down(queryInterface, Sequelize) {
- await queryInterface.dropTable('Articles');
- }
- };
|