feat : ajout de colonne pour les Supplier, Address. Modification du numéro de réception et ajout de fixtures

This commit is contained in:
2026-01-30 11:49:13 +01:00
parent bbe0a9fdd4
commit 7341b9c69d
19 changed files with 766 additions and 13 deletions

View File

@@ -76,6 +76,9 @@ build-without-cache:
migration-migrate:
$(SYMFONY_CONSOLE) doctrine:migrations:migrate --no-interaction
fixtures:
$(SYMFONY_CONSOLE) doctrine:fixtures:load
# Attention, supprime votre bdd local
db-reset:
$(DOCKER_COMPOSE) down -v
@@ -83,6 +86,7 @@ db-reset:
$(MAKE) wait
$(SYMFONY_CONSOLE) doctrine:database:create --if-not-exists
$(MAKE) migration-migrate
$(MAKE) fixtures
# Restart la bdd
db-restart: