fix: remove updated_at from migration (column doesn't exist)
Some checks are pending
NordaBiz Tests / Unit & Integration Tests (push) Waiting to run
NordaBiz Tests / E2E Tests (Playwright) (push) Blocked by required conditions
NordaBiz Tests / Smoke Tests (Production) (push) Blocked by required conditions
NordaBiz Tests / Send Failure Notification (push) Blocked by required conditions

Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com>
This commit is contained in:
Maciej Pienczyn 2026-02-21 19:23:01 +01:00
parent bbb43aaac7
commit b6d9fb7382

View File

@ -2,8 +2,7 @@
-- 14 companies have website URLs without http/https scheme
UPDATE companies
SET website = 'https://' || website,
updated_at = NOW()
SET website = 'https://' || website
WHERE website IS NOT NULL
AND website != ''
AND website NOT LIKE 'http://%'