-- ═══════════════════════════════════════════════
-- Customer Management Module - Default Seed Data
-- ═══════════════════════════════════════════════

-- Default Customer Groups
INSERT IGNORE INTO `customer_groups` (`name`, `description`, `created_at`, `updated_at`) VALUES
('Regular', 'Standard customers', NOW(), NOW()),
('VIP', 'High-value customers with priority support', NOW(), NOW()),
('Enterprise', 'Large corporate accounts', NOW(), NOW()),
('Wholesale', 'Bulk purchase customers', NOW(), NOW());
