34414-vm/db/migrations/003_add_department_users.sql
Flatlogic Bot ba92df7101 0.2
2025-09-26 09:52:11 +00:00

8 lines
413 B
SQL

-- Add new roles for the vetting departments
-- For now, we are adding only identity_verification. We can add more roles later.
-- Insert a default user for the Identity Verification department
-- The password is '''password'''
INSERT INTO `users` (`username`, `password`, `role`) VALUES
('''identity_verifier''', '''$2y$10$92IXUNpkjO0rOQ5byMi.Ye4oKoEa3Ro9llC/.og/at2.uheWG/igi''', '''identity_verification''');