mirror of
https://github.com/outline/outline.git
synced 2026-06-26 09:44:24 +03:00
82d7041b6b
* chore: Refactor Markdown importer to use new import pipeline --------- Co-authored-by: Claude Opus 4.7 <noreply@anthropic.com>
17 lines
400 B
JavaScript
17 lines
400 B
JavaScript
"use strict";
|
|
|
|
/** @type {import('sequelize-cli').Migration} */
|
|
module.exports = {
|
|
async up(queryInterface) {
|
|
await queryInterface.sequelize.query(
|
|
`ALTER TABLE "imports" ALTER COLUMN "integrationId" DROP NOT NULL`
|
|
);
|
|
},
|
|
|
|
async down(queryInterface) {
|
|
await queryInterface.sequelize.query(
|
|
`ALTER TABLE "imports" ALTER COLUMN "integrationId" SET NOT NULL`
|
|
);
|
|
},
|
|
};
|