diff --git a/packages/commonwealth/server/migrations/20241108224959-add-topic-archival.js b/packages/commonwealth/server/migrations/20241108224959-add-topic-archival.js deleted file mode 100644 index 7ea5bdf4a7e..00000000000 --- a/packages/commonwealth/server/migrations/20241108224959-add-topic-archival.js +++ /dev/null @@ -1,26 +0,0 @@ -'use strict'; - -/** @type {import('sequelize-cli').Migration} */ -module.exports = { - async up(queryInterface, Sequelize) { - await queryInterface.sequelize.transaction(async (transaction) => { - await queryInterface.addColumn( - 'Topics', - 'archived_at', - { - type: Sequelize.DATE, - allowNull: true, - }, - { transaction }, - ); - }); - }, - - async down(queryInterface, Sequelize) { - await queryInterface.sequelize.transaction(async (transaction) => { - await queryInterface.removeColumn('Topics', 'archived_at', { - transaction, - }); - }); - }, -};