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
9 lines
634 B
SQL
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;
|