diff --git a/.gitignore b/.gitignore index a2a80766..6b2b3f98 100644 --- a/.gitignore +++ b/.gitignore @@ -15,6 +15,4 @@ /build -package-lock.json - -docker-compose.yml \ No newline at end of file +package-lock.json \ No newline at end of file diff --git a/server/migrations/20250125120216-add-airtable-columns-to-robot.js b/server/migrations/20250125120216-add-airtable-columns-to-robot.js deleted file mode 100644 index ac2c852b..00000000 --- a/server/migrations/20250125120216-add-airtable-columns-to-robot.js +++ /dev/null @@ -1,16 +0,0 @@ -'use strict'; - -module.exports = { - up: async (queryInterface, Sequelize) => { - - await queryInterface.addColumn('robot', 'airtable_refresh_token', { - type: Sequelize.STRING, - allowNull: true, - }); - }, - - down: async (queryInterface, Sequelize) => { - - await queryInterface.removeColumn('robot', 'airtable_refresh_token'); - }, -}; \ No newline at end of file diff --git a/server/migrations/20250125182726-update-airtable-token-length.js b/server/migrations/20250125182726-update-airtable-token-length.js deleted file mode 100644 index b75d788c..00000000 --- a/server/migrations/20250125182726-update-airtable-token-length.js +++ /dev/null @@ -1,22 +0,0 @@ -// migrations/XXXXXXXXXXXXXX-update-airtable-token-length.js -module.exports = { - up: async (queryInterface, Sequelize) => { - await queryInterface.changeColumn('robot', 'airtable_access_token', { - type: Sequelize.TEXT - }); - - await queryInterface.changeColumn('robot', 'airtable_refresh_token', { - type: Sequelize.TEXT - }); - }, - - down: async (queryInterface, Sequelize) => { - await queryInterface.changeColumn('robot', 'airtable_access_token', { - type: Sequelize.STRING(255) - }); - - await queryInterface.changeColumn('robot', 'airtable_refresh_token', { - type: Sequelize.STRING(255) - }); - } -}; \ No newline at end of file diff --git a/server/migrations/20250207133740-added_table_id.js b/server/migrations/20250207133740-added_table_id.js deleted file mode 100644 index 0a40d0c7..00000000 --- a/server/migrations/20250207133740-added_table_id.js +++ /dev/null @@ -1,16 +0,0 @@ -'use strict'; - -/** @type {import('sequelize-cli').Migration} */ -module.exports = { - async up (queryInterface, Sequelize) { - await queryInterface.addColumn('robot', 'airtable_table_id', { - type: Sequelize.TEXT - }); - }, - - async down (queryInterface, Sequelize) { - await queryInterface.removeColumn('robot', 'airtable_table_id', { - type: Sequelize.TEXT - }); - } -};