-- 0025 was silently skipped on databases that already had a later migration -- timestamp recorded (from a since-removed feature's migrations). Re-apply -- idempotently so both that DB and any fresh install end up with the column. ALTER TABLE "beenvoice_business" ADD COLUMN IF NOT EXISTS "hideNameWithLogo" boolean DEFAULT false NOT NULL; --> statement-breakpoint -- Drop the orphaned table from the business-document-vault feature that was -- removed earlier this session (its migrations ran on this DB before removal). DROP TABLE IF EXISTS "beenvoice_business_document" CASCADE;