* Allow setting permission of collections during import closes #6767 * Remove unused column
15 lines
327 B
JavaScript
15 lines
327 B
JavaScript
"use strict";
|
|
|
|
module.exports = {
|
|
up: async (queryInterface, Sequelize) => {
|
|
return queryInterface.addColumn("file_operations", "options", {
|
|
type: Sequelize.JSONB,
|
|
allowNull: true,
|
|
});
|
|
},
|
|
|
|
down: async (queryInterface) => {
|
|
return queryInterface.removeColumn("file_operations", "options");
|
|
},
|
|
};
|