-- VILLAFLOW CMS — Seed Data
-- Phase 1 — Foundation
--
-- Creates one initial admin account.
--
-- Login email:    admin@villaflow.local
-- Login password: ChangeMe123!
--
-- IMPORTANT: change this password immediately after first login.
-- The hash below is a bcrypt hash (PHP password_hash()-compatible)
-- of the plaintext password shown above — it is NOT stored in
-- plaintext anywhere in the application.

INSERT INTO users (name, email, password_hash)
VALUES (
    'Admin',
    'admin@villaflow.local',
    '$2b$10$6fbmwYRBNLq1AYsPhl6lGO2Tah3tmUKxltUQLm0KXe3BA3WITJG0G'
)
ON DUPLICATE KEY UPDATE name = name;
