tableId column added
This commit is contained in:
16
server/migrations/20250207133740-added_table_id.js
Normal file
16
server/migrations/20250207133740-added_table_id.js
Normal file
@@ -0,0 +1,16 @@
|
||||
'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
|
||||
});
|
||||
}
|
||||
};
|
||||
Reference in New Issue
Block a user