Added index on release tags table and temporarily removed 'new' label for performance.

This commit is contained in:
DebaucheryLibrarian
2023-06-12 01:43:43 +02:00
parent 828db2a8c8
commit f464563dae
3 changed files with 8 additions and 2 deletions

View File

@@ -0,0 +1,7 @@
exports.up = async (knex) => {
await knex.raw('CREATE INDEX releases_tag_index ON releases_tags(tag_id);');
};
exports.down = async (knex) => {
await knex.raw('DROP INDEX releases_tag_index;');
};