mirror of
https://github.com/outline/outline.git
synced 2026-06-13 11:25:03 +03:00
fce02996f9
* Add show TOC option * Revert copy change
16 lines
327 B
JavaScript
16 lines
327 B
JavaScript
"use strict";
|
|
|
|
module.exports = {
|
|
async up(queryInterface, Sequelize) {
|
|
await queryInterface.addColumn("shares", "showTOC", {
|
|
type: Sequelize.BOOLEAN,
|
|
allowNull: false,
|
|
defaultValue: false,
|
|
});
|
|
},
|
|
|
|
async down(queryInterface) {
|
|
await queryInterface.removeColumn("shares", "showTOC");
|
|
},
|
|
};
|