mirror of
https://github.com/outline/outline.git
synced 2026-06-30 19:47:28 +03:00
16 lines
366 B
JavaScript
16 lines
366 B
JavaScript
'use strict';
|
|
|
|
/** @type {import('sequelize-cli').Migration} */
|
|
module.exports = {
|
|
async up (queryInterface, Sequelize) {
|
|
await queryInterface.addColumn("revisions", "deletedAt", {
|
|
type: Sequelize.DATE,
|
|
allowNull: true
|
|
});
|
|
},
|
|
|
|
async down (queryInterface, Sequelize) {
|
|
await queryInterface.removeColumn("revisions", "deletedAt");
|
|
}
|
|
};
|