Files
outline/server/migrations/20260320000000-add-team-guidance-mcp.js
Tom Moor fddf630e49 Add configurable MCP workspace guidance (#11839)
* 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>
2026-03-22 10:45:09 -04:00

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");
},
};