mirror of
https://github.com/outline/outline.git
synced 2026-06-13 11:25:03 +03:00
ca17b41c53
* share: add `allowIndexing` ## Ticket Closes 7486 * i18n: follow existing no-punctuation style
16 lines
348 B
JavaScript
16 lines
348 B
JavaScript
"use strict";
|
|
|
|
module.exports = {
|
|
up: async (queryInterface, Sequelize) => {
|
|
await queryInterface.addColumn("shares", "allowIndexing", {
|
|
type: Sequelize.BOOLEAN,
|
|
allowNull: false,
|
|
defaultValue: true,
|
|
});
|
|
},
|
|
|
|
down: async (queryInterface) => {
|
|
await queryInterface.removeColumn("shares", "allowIndexing");
|
|
},
|
|
};
|