'use strict'; module.exports = { async up(queryInterface, Sequelize) { await queryInterface.createTable('posts', { id: { allowNull: false, autoIncrement: true, primaryKey: true, type: Sequelize.INTEGER }, title: { type: Sequelize.STRING, allowNull: false }, content: { type: Sequelize.TEXT, allowNull: true }, published: { type: Sequelize.BOOLEAN, defaultValue: false }, authorId: { type: Sequelize.INTEGER, allowNull: false, references: { model: 'users', key: 'id' } }, createdAt: { allowNull: false, type: Sequelize.DATE }, updatedAt: { allowNull: false, type: Sequelize.DATE } }); }, async down(queryInterface, Sequelize) { await queryInterface.dropTable('posts'); } };