mirror of
https://github.com/outline/outline.git
synced 2026-06-13 03:14:59 +03:00
b1bf7c488b
The collaborativeEditing toggle has been unused since collaborative editing became always-on. The column is no longer defined in the Team model nor referenced anywhere in the codebase, so this drops it. Co-authored-by: Claude Opus 4.8 <noreply@anthropic.com>
15 lines
349 B
JavaScript
15 lines
349 B
JavaScript
"use strict";
|
|
|
|
/** @type {import('sequelize-cli').Migration} */
|
|
module.exports = {
|
|
async up(queryInterface) {
|
|
await queryInterface.removeColumn("teams", "collaborativeEditing");
|
|
},
|
|
|
|
async down(queryInterface, Sequelize) {
|
|
await queryInterface.addColumn("teams", "collaborativeEditing", {
|
|
type: Sequelize.BOOLEAN,
|
|
});
|
|
},
|
|
};
|