# Installation — Coaster World v1.75.0

## Méthode recommandée — Laragon / Laravel

Après avoir remplacé les fichiers :

```bat
cd C:\laragon\www\coaster-world
php artisan migrate
php artisan optimize:clear
```

La migration attendue est :

```text
2026_08_14_001700_create_catalog_enrichment_runs_table
```

Elle crée :

```text
catalog_enrichment_runs
```

Vous pouvez ensuite tester l’enrichissement sur un seul parc :

```bat
php artisan cw:catalog:auto-enrich --park=europa-park
```

Ou laisser le scheduler traiter progressivement le catalogue. Il lance automatiquement un petit lot chaque nuit.

## Alternative phpMyAdmin

Si vous ne souhaitez pas utiliser `php artisan migrate`, importez uniquement :

```text
database\migrations\sql\coaster_world_v1.75.0_catalog_enrichment.sql
```

puis exécutez :

```bat
php artisan optimize:clear
```

**Ne faites pas les deux méthodes.**

Ne jamais utiliser `php artisan migrate:fresh` sur votre base existante.
