-- Lead Management Module - Default Seed Data
-- Run after migration to populate default statuses and sources

INSERT INTO `leads_status` (`name`, `statusorder`, `color`, `isdefault`, `created_at`, `updated_at`) VALUES
('New',        1, '#3498db', 1, NOW(), NOW()),
('Contacted',  2, '#9b59b6', 0, NOW(), NOW()),
('Followup',   3, '#6366f1', 0, NOW(), NOW()),
('Qualified',  4, '#f59e0b', 0, NOW(), NOW()),
('Customer',   5, '#10b981', 0, NOW(), NOW());

INSERT INTO `leads_sources` (`name`, `created_at`, `updated_at`) VALUES
('Website',        NOW(), NOW()),
('Referral',       NOW(), NOW()),
('Social Media',   NOW(), NOW()),
('Direct Call',    NOW(), NOW()),
('Email Campaign', NOW(), NOW()),
('Google Ads',     NOW(), NOW()),
('Trade Show',     NOW(), NOW());
