From ef06040b0501a7a1cf1c237d56a60d59b9c1ceb0 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Fredrik=20Adel=C3=B6w?= Date: Tue, 14 Apr 2026 15:03:23 +0200 Subject: [PATCH] fix(catalog-backend): add missing JSDoc type annotation on down function MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Signed-off-by: Fredrik Adelöw Made-with: Cursor --- .../catalog-backend/migrations/20220116144621_remove_legacy.js | 3 +++ 1 file changed, 3 insertions(+) diff --git a/plugins/catalog-backend/migrations/20220116144621_remove_legacy.js b/plugins/catalog-backend/migrations/20220116144621_remove_legacy.js index a3b690b92b..7146c9f6a6 100644 --- a/plugins/catalog-backend/migrations/20220116144621_remove_legacy.js +++ b/plugins/catalog-backend/migrations/20220116144621_remove_legacy.js @@ -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');