mirror of
https://github.com/outline/outline.git
synced 2026-06-26 17:54:24 +03:00
33ce49cc33
* Complete refactor of import * feat: Notion data import (#3442)
15 lines
363 B
JavaScript
15 lines
363 B
JavaScript
'use strict';
|
|
|
|
module.exports = {
|
|
up: async (queryInterface, Sequelize) => {
|
|
await queryInterface.addColumn("file_operations", "format", {
|
|
type: Sequelize.STRING,
|
|
defaultValue: "outline-markdown",
|
|
allowNull: false
|
|
});
|
|
},
|
|
down: async (queryInterface) => {
|
|
await queryInterface.removeColumn("file_operations", "format");
|
|
},
|
|
};
|