fix(catalog-backend): add missing JSDoc type annotation on down function

Signed-off-by: Fredrik Adelöw <freben@spotify.com>
Made-with: Cursor
This commit is contained in:
Fredrik Adelöw
2026-04-14 15:03:23 +02:00
parent b33f8450b5
commit ef06040b05
@@ -25,6 +25,9 @@ exports.up = async function up(knex) {
await knex.schema.dropTable('entities');
};
/**
* @param {import('knex').Knex} knex
*/
exports.down = async function down(knex) {
await knex.schema.createTable('entities', table => {
table.comment('All entities currently stored in the catalog');