8 lines
413 B
SQL
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''');
|