| 1234567 |
- -- Insert default admin user
- INSERT INTO users (username, email, password_hash, first_name, last_name, role, is_active) VALUES
- ('admin', 'admin@inventory.com', '$2y$10$92IXUNpkjO0rOQ5byMi.Ye4oKoEa3Ro9llC/.og/at2.uheWG/igi', 'Admin', 'User', 'admin', TRUE);
- -- Password for this user is: password
- -- The hash is for the password "password"
- -- You should change this password after first login
|