15 lines
370 B
JavaScript
15 lines
370 B
JavaScript
'use strict';
|
|
|
|
module.exports = {
|
|
up: (queryInterface, Sequelize) => {
|
|
return queryInterface.removeConstraint('bookingReservations', 'bookingReservations_pkey');
|
|
},
|
|
|
|
down: (queryInterface, Sequelize) => {
|
|
return queryInterface.addConstraint('bookingReservations', ['id'], {
|
|
name: 'bookingReservations_pkey',
|
|
type: 'PRIMARY KEY',
|
|
});
|
|
}
|
|
};
|