This repository has been archived on 2022-08-14. You can view files and clone it, but cannot push or open issues or pull requests.
outline/server/migrations/20160812145029-document-atl...

19 lines
496 B
JavaScript
Raw Normal View History

module.exports = {
up: async (queryInterface, Sequelize) => {
await queryInterface.addColumn('atlases', 'deletedAt', {
2017-04-27 04:47:03 +00:00
type: Sequelize.DATE,
allowNull: true,
});
await queryInterface.addColumn('documents', 'deletedAt', {
2017-04-27 04:47:03 +00:00
type: Sequelize.DATE,
allowNull: true,
});
},
down: async (queryInterface, Sequelize) => {
await queryInterface.removeColumn('atlases', 'deletedAt');
await queryInterface.removeColumn('documents', 'deletedAt');
2017-04-27 04:47:03 +00:00
},
};