mirror of
https://github.com/outline/outline.git
synced 2026-06-28 18:54:24 +03:00
15 lines
348 B
JavaScript
15 lines
348 B
JavaScript
'use strict';
|
|
|
|
module.exports = {
|
|
up: async (queryInterface, Sequelize) => {
|
|
await queryInterface.addColumn('groups', 'isPrivate', {
|
|
type: Sequelize.BOOLEAN,
|
|
allowNull: false,
|
|
defaultValue: true
|
|
});
|
|
},
|
|
down: async (queryInterface, Sequelize) => {
|
|
await queryInterface.removeColumn('groups', 'isPrivate');
|
|
}
|
|
};
|