mirror of
https://github.com/outline/outline.git
synced 2026-06-25 17:24:23 +03:00
bcc5a94070
* feat: Add email subscriptions to public docs
16 lines
348 B
JavaScript
16 lines
348 B
JavaScript
"use strict";
|
|
|
|
module.exports = {
|
|
async up(queryInterface, Sequelize) {
|
|
await queryInterface.addColumn("shares", "allowSubscriptions", {
|
|
type: Sequelize.BOOLEAN,
|
|
allowNull: false,
|
|
defaultValue: true,
|
|
});
|
|
},
|
|
|
|
async down(queryInterface) {
|
|
await queryInterface.removeColumn("shares", "allowSubscriptions");
|
|
},
|
|
};
|