mirror of
https://github.com/outline/outline.git
synced 2026-07-01 03:57:28 +03:00
10 lines
350 B
JavaScript
10 lines
350 B
JavaScript
module.exports = {
|
|
up: async (queryInterface, Sequelize) => {
|
|
await queryInterface.addColumn('collections', 'maintainerApprovalRequired', {
|
|
type: Sequelize.BOOLEAN,
|
|
});
|
|
},
|
|
down: async (queryInterface, Sequelize) => {
|
|
await queryInterface.removeColumn('collections', 'maintainerApprovalRequired');
|
|
},
|
|
}; |