Files
outline/server/migrations/20251125012930-add-popularity-score-index.js
T
Tom Moor b6a8986235 chore: Update UpdateDocumentsPopularityScoreTask to run 4 times per day (#10729)
* chore: Update UpdateDocumentsPopularityScoreTask to run 4 times per day

* chore: Add index to popularityScore column
2025-11-26 01:39:16 +01:00

15 lines
333 B
JavaScript

"use strict";
/** @type {import('sequelize-cli').Migration} */
module.exports = {
async up(queryInterface) {
await queryInterface.addIndex("documents", ["popularityScore"], {
concurrently: true,
});
},
async down(queryInterface) {
await queryInterface.removeIndex("documents", ["popularityScore"]);
},
};