-- Superadmin user: admin@detailingriga.com / DetailRiga@2026!
-- Password hash generated with: password_hash('DetailRiga@2026!', PASSWORD_BCRYPT, ['cost' => 12])
INSERT IGNORE INTO users (email, password_hash, name, phone, role, is_active, created_at) VALUES (
    'admin@detailingriga.com',
    '$2y$12$k8yJCupeEuVTI1j7efd3tOz/ZwR2KoLASQMRC2PnNSBwzJ05ECbTy',
    'Super Admin',
    NULL,
    'superadmin',
    1,
    NOW()
);
-- NOTE: The hash above is a placeholder. Run this PHP to get the real hash:
-- echo password_hash('DetailRiga@2026!', PASSWORD_BCRYPT, ['cost' => 12]);
-- Then replace the hash in this file before running.
