* feat: Split and simplify import/export pages in prep for more options * minor fixes * File operations for imports * test * icons
14 lines
321 B
JavaScript
14 lines
321 B
JavaScript
"use strict";
|
|
|
|
module.exports = {
|
|
up: async (queryInterface, Sequelize) => {
|
|
await queryInterface.addColumn("file_operations", "error", {
|
|
type: Sequelize.STRING,
|
|
allowNull: true,
|
|
});
|
|
},
|
|
down: async (queryInterface) => {
|
|
await queryInterface.removeColumn("file_operations", "error");
|
|
},
|
|
};
|