13 lines
336 B
JavaScript
13 lines
336 B
JavaScript
'use strict';
|
|
|
|
/** @type {import('sequelize-cli').Migration} */
|
|
module.exports = {
|
|
async up (queryInterface, Sequelize) {
|
|
await queryInterface.renameColumn('Bots', 'pullTimeout', 'claimTimeout');
|
|
},
|
|
|
|
async down (queryInterface, Sequelize) {
|
|
await queryInterface.renameColumn('Bots', 'claimTimeout', 'pullTimeout');
|
|
}
|
|
};
|