diff --git a/server/migrations/20200831143500-tag_confirmation.js b/server/migrations/20200831143500-tag_confirmation.js deleted file mode 100644 index df758171..00000000 --- a/server/migrations/20200831143500-tag_confirmation.js +++ /dev/null @@ -1,13 +0,0 @@ -module.exports = { - up: (queryInterface, Sequelize) => { - return queryInterface.addColumn('tags', 'confirmed', { - type: Sequelize.BOOLEAN, - defaultValue: true, - allowNull: false - }) - }, - - down: (queryInterface, Sequelize) => { - return queryInterface.removeColumn('tags', 'confirmed') - } -} diff --git a/server/migrations/20200831144116-place_confirmation.js b/server/migrations/20200831144116-place_confirmation.js deleted file mode 100644 index 38a23b32..00000000 --- a/server/migrations/20200831144116-place_confirmation.js +++ /dev/null @@ -1,13 +0,0 @@ -module.exports = { - up: (queryInterface, Sequelize) => { - return queryInterface.addColumn('places', 'confirmed', { - type: Sequelize.BOOLEAN, - defaultValue: true, - allowNull: false - }) - }, - - down: (queryInterface, Sequelize) => { - return queryInterface.removeColumn('places', 'confirmed') - } -} diff --git a/server/migrations/20210409212349-remove_tag_confirmation.js b/server/migrations/20210409212349-remove_tag_confirmation.js deleted file mode 100644 index ab01586e..00000000 --- a/server/migrations/20210409212349-remove_tag_confirmation.js +++ /dev/null @@ -1,6 +0,0 @@ - -module.exports = { - up: (queryInterface, Sequelize) => { - return queryInterface.removeColumn('tags', 'confirmed') - } -} diff --git a/server/migrations/20210409212803-remove_place_confirmation.js b/server/migrations/20210409212803-remove_place_confirmation.js deleted file mode 100644 index 4775b923..00000000 --- a/server/migrations/20210409212803-remove_place_confirmation.js +++ /dev/null @@ -1,6 +0,0 @@ - -module.exports = { - up: (queryInterface, Sequelize) => { - return queryInterface.removeColumn('places', 'confirmed') - } -}