catalog/next: Keep bootstrap location

Signed-off-by: Johan Haals <johan.haals@gmail.com>
This commit is contained in:
Johan Haals
2021-06-03 09:50:37 +02:00
parent 644d315080
commit f1bbc6da10
@@ -191,11 +191,6 @@ exports.up = async function up(knex) {
table.index(['key'], 'search_key_idx');
table.index(['value'], 'search_value_idx');
});
// Delete bootstrap location which is no longer required.
await knex('locations')
.where({ type: 'bootstrap', target: 'bootstrap' })
.delete();
};
/**