Files
parcer/server/migrations/20250125120216-add-airtable-columns-to-robot.js

16 lines
354 B
JavaScript
Raw Normal View History

2025-01-26 14:22:36 +05:30
'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');
},
};