mirror of
https://github.com/outline/outline.git
synced 2026-06-26 17:54:24 +03:00
450d0d9355
Co-authored-by: Tom Moor <tom.moor@gmail.com>
16 lines
372 B
JavaScript
16 lines
372 B
JavaScript
"use strict";
|
|
|
|
/** @type {import('sequelize-cli').Migration} */
|
|
module.exports = {
|
|
async up(queryInterface, Sequelize) {
|
|
await queryInterface.addColumn("integrations", "deletedAt", {
|
|
type: Sequelize.DATE,
|
|
allowNull: true,
|
|
});
|
|
},
|
|
|
|
async down(queryInterface, Sequelize) {
|
|
await queryInterface.removeColumn("integrations", "deletedAt");
|
|
},
|
|
};
|