Skip to content

Commit 9fa70a4

Browse files
authored
Commands in tutorial should reflect the recommand install way
As using docker install way is the "recommended" way, all commands specific to this tutorial should use the "docker way"
1 parent 399784d commit 9fa70a4

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

symfony/index.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -486,8 +486,8 @@ Now, delete the file `api/src/Entity/Greeting.php`. This demo entity isn't usefu
486486
Finally, generate a new database migration using [Doctrine Migrations](https://symfony.com/doc/current/doctrine.html#migrations-creating-the-database-tables-schema) and apply it:
487487

488488
```console
489-
bin/console doctrine:migrations:diff
490-
bin/console doctrine:migrations:migrate
489+
docker compose exec php bin/console doctrine:migrations:diff
490+
docker compose exec php bin/console doctrine:migrations:migrate
491491
```
492492

493493
**We now have a working API with read and write capabilities!**

0 commit comments

Comments
 (0)