========================================
README UPDATE FOR v3.4.0
========================================

The following section should be updated in README.md:

REPLACE THIS SECTION:
---
### Step 2: Database Setup
```bash
# Create database and import schema
mysql -u root -p < database/schema.sql

# Or use phpMyAdmin:
# 1. Create database: risk_assessment_db
# 2. Import database/schema.sql
```
---

WITH THIS:
---
### Step 2: Database Setup (SIMPLIFIED!)
```bash
# One command - imports everything!
mysql -u root -p < database/complete_schema.sql
```

This single file:
- Creates the database automatically
- Creates all 23 tables
- Sets up all indexes and relationships
- Loads default admin user
- Loads sample hazards (15+)
- Configures permissions
- Sets retention policies
- Ready to use immediately!

**Old multi-file import method is deprecated.**
For reference, old schemas are in database/backup_schemas/
---

Also add this to the Features section:
- ✅ **Single-File Database Setup** - Complete installation in one SQL file
