diff --git a/migrations/20230219070939-create-guestbook.js b/migrations/20230219070939-create-guestbook.js index c82949b..9383086 100644 --- a/migrations/20230219070939-create-guestbook.js +++ b/migrations/20230219070939-create-guestbook.js @@ -6,8 +6,6 @@ module.exports = { await queryInterface.createTable('guestbook', struct); }, async down(queryInterface, Sequelize) { - if (await queryInterface.tableExists('guestbook')) { - await queryInterface.dropTable('guestbook'); - } + await queryInterface.dropTable('guestbook'); } }; \ No newline at end of file