chore: Refactor data import (#3434)
* Complete refactor of import * feat: Notion data import (#3442)
This commit is contained in:
@@ -0,0 +1,14 @@
|
||||
'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");
|
||||
},
|
||||
};
|
||||
Reference in New Issue
Block a user