Calculate door lock charges
This commit is contained in:
@@ -0,0 +1,14 @@
|
||||
'use strict';
|
||||
|
||||
module.exports = {
|
||||
up: (queryInterface, Sequelize) => {
|
||||
return queryInterface.addColumn('bookingReservations', 'officeId', {
|
||||
type: Sequelize.TEXT,
|
||||
after: 'memberId',
|
||||
});
|
||||
},
|
||||
|
||||
down: (queryInterface, Sequelize) => {
|
||||
return queryInterface.removeColumn('bookingReservations', 'officeId');
|
||||
}
|
||||
};
|
||||
Reference in New Issue
Block a user