Rustelo/features/shared/seeds/001_sample_users.sql
Jesús Pérez 7cab57b645
Some checks failed
CI/CD Pipeline / Test Suite (push) Has been cancelled
CI/CD Pipeline / Security Audit (push) Has been cancelled
CI/CD Pipeline / Build Docker Image (push) Has been cancelled
CI/CD Pipeline / Deploy to Staging (push) Has been cancelled
CI/CD Pipeline / Deploy to Production (push) Has been cancelled
CI/CD Pipeline / Performance Benchmarks (push) Has been cancelled
CI/CD Pipeline / Cleanup (push) Has been cancelled
chore: update layout and files
2026-02-08 20:18:46 +00:00

9 lines
634 B
SQL

-- Sample users for development
-- This file works for both PostgreSQL and SQLite
INSERT INTO users (username, email, password_hash, is_active, is_verified) VALUES
('admin', 'admin@example.com', '$argon2id$v=19$m=65536,t=3,p=4$Ym9vZm9v$2RmTUplMXB3YUNGeFczL1NyTlJFWERsZVdrbUVuNHhDNlk5K1ZZWVorUT0', true, true),
('user', 'user@example.com', '$argon2id$v=19$m=65536,t=3,p=4$Ym9vZm9v$2RmTUplMXB3YUNGeFczL1NyTlJFWERsZVdrbUVuNHhDNlk5K1ZZWVorUT0', true, true),
('editor', 'editor@example.com', '$argon2id$v=19$m=65536,t=3,p=4$Ym9vZm9v$2RmTUplMXB3YUNGeFczL1NyTlJFWERsZVdrbUVuNHhDNlk5K1ZZWVorUT0', true, true)
ON CONFLICT (email) DO NOTHING;