- Drop .gitmodules (ia_dev tracked as submodule pointer without file) - Add services/docv Cargo workspace: docv-back, docv-shared, migrations, sources - Refresh systemd/README.md
10 lines
278 B
SQL
10 lines
278 B
SQL
-- Demo user aligned with Lovable mock (password: demo). Safe on repeated apply.
|
|
|
|
INSERT INTO users (email, password_hash, name)
|
|
VALUES (
|
|
'client@example.com',
|
|
'$2b$10$mUXYmHFzQhhB3e7OiRR4JOhLwIrQUhXVLM8b2mFBwjeJHFjUywrUq',
|
|
'Jean Dupont'
|
|
)
|
|
ON CONFLICT (email) DO NOTHING;
|