-- Migration: Remove UNIQUE constraint from customers.linkedin_url -- This allows multiple customers (different ghostwriters/companies) to share the same LinkedIn URL. -- Each user context gets its own independent Customer record. ALTER TABLE customers DROP CONSTRAINT IF EXISTS customers_linkedin_url_key; -- The existing index idx_customers_linkedin_url remains for fast lookups (non-unique).