forked from DebaucheryLibrarian/traxxx
Added index on release tags table and temporarily removed 'new' label for performance.
This commit is contained in:
7
migrations/20230612012243_indexes.js
Normal file
7
migrations/20230612012243_indexes.js
Normal 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;');
|
||||
};
|
||||
Reference in New Issue
Block a user