mirror of
https://github.com/outline/outline.git
synced 2026-06-28 10:44:25 +03:00
7f17a51e11
* feat: Add email headers to enhance threading * tsc * review * change comment mentioned email subject * paginated load * rename util method * add tests * group events * test for unsupported notification * typo * review
13 lines
338 B
JavaScript
13 lines
338 B
JavaScript
"use strict";
|
|
|
|
/** @type {import('sequelize-cli').Migration} */
|
|
module.exports = {
|
|
async up(queryInterface, Sequelize) {
|
|
await queryInterface.addIndex("notifications", ["documentId", "userId"]);
|
|
},
|
|
|
|
async down(queryInterface, Sequelize) {
|
|
await queryInterface.removeIndex("notifications", ["documentId", "userId"]);
|
|
},
|
|
};
|