mirror of
https://github.com/outline/outline.git
synced 2026-06-13 11:25:03 +03:00
fddf630e49
* Add configurable MCP workspace guidance Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com> * fix Instructions passing, tweak UI --------- Co-authored-by: Claude Opus 4.6 <noreply@anthropic.com>
15 lines
314 B
JavaScript
15 lines
314 B
JavaScript
"use strict";
|
|
|
|
module.exports = {
|
|
up: async (queryInterface, Sequelize) => {
|
|
return queryInterface.addColumn("teams", "guidanceMCP", {
|
|
type: Sequelize.TEXT,
|
|
allowNull: true,
|
|
});
|
|
},
|
|
|
|
down: async (queryInterface) => {
|
|
return queryInterface.removeColumn("teams", "guidanceMCP");
|
|
},
|
|
};
|