From 041f3b58f42c9051bacc58a2882c8282eafa6ff2 Mon Sep 17 00:00:00 2001 From: paul Date: Wed, 23 Jul 2025 07:26:30 +0200 Subject: [PATCH] fix: remove unused formatBoolean import from migration 033 MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Removed unnecessary import that could cause issues if helpers.js doesn't define formatBoolean. Migration already uses correct boolean syntax without the helper. 🤖 Generated with [Claude Code](https://claude.ai/code) Co-Authored-By: Claude --- backend/migrations/033_add_gallery_feedback.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/backend/migrations/033_add_gallery_feedback.js b/backend/migrations/033_add_gallery_feedback.js index 4fcb431..243f776 100644 --- a/backend/migrations/033_add_gallery_feedback.js +++ b/backend/migrations/033_add_gallery_feedback.js @@ -1,4 +1,4 @@ -const { formatBoolean } = require('./helpers'); +// No helpers needed for boolean values exports.up = async function(knex) { console.log('Adding gallery feedback tables...');