25 lines
599 B
JavaScript
25 lines
599 B
JavaScript
|
|
module.exports = {
|
|
/**
|
|
* @param {import("sequelize").QueryInterface} queryInterface
|
|
* @param {import("sequelize").Sequelize} Sequelize
|
|
* @returns {Promise<void>}
|
|
*/
|
|
async up(queryInterface, Sequelize) {
|
|
await queryInterface.addColumn('users', 'businessId', {
|
|
type: Sequelize.DataTypes.UUID,
|
|
references: {
|
|
model: 'businesses',
|
|
key: 'id',
|
|
},
|
|
allowNull: true,
|
|
onUpdate: 'CASCADE',
|
|
onDelete: 'SET NULL',
|
|
});
|
|
},
|
|
|
|
async down(queryInterface, Sequelize) {
|
|
await queryInterface.removeColumn('users', 'businessId');
|
|
},
|
|
};
|