-- Add missing columns to existing leads table ALTER TABLE leads ADD COLUMN IF NOT EXISTS source TEXT; ALTER TABLE leads ADD COLUMN IF NOT EXISTS email TEXT; -- Add sample leads INSERT INTO leads (name, business_name, phone, status, source) VALUES ('Juan', 'Restaurante La NiƱa', '+34 952 449 193', 'new', 'cold_call'), ('Maria', 'Restaurante Trocadero', '+34 681 142 944', 'new', 'cold_call'), ('Carlos', 'Restaurant No7', '+34 655 036 827', 'new', 'cold_call');