mirror of
https://github.com/outline/outline.git
synced 2026-06-28 10:44:25 +03:00
15 lines
284 B
JavaScript
15 lines
284 B
JavaScript
'use strict';
|
|
|
|
/** @type {import('sequelize-cli').Migration} */
|
|
module.exports = {
|
|
async up (queryInterface) {
|
|
await queryInterface.sequelize.query(
|
|
`DELETE FROM group_users WHERE "deletedAt" IS NOT NULL`
|
|
);
|
|
},
|
|
|
|
async down () {
|
|
// No reverting possible
|
|
}
|
|
};
|