Newer
Older
# API
The API will be here.
Refer to the [Getting Started Guide](https://api-platform.com/docs/distribution) for more information.
## Migrations and database
```bash
docker compose exec php bin/console doctrine:migrations:diff
docker compose exec php bin/console doctrine:migrations:migrate
```
(Optimisation)
Indexation de la Colonne de Date, car toutes les routes font des opérations de filtrage basées sur cette colonne.
````sql
create index date_index on sale (date);
````