We should consider adding a new github action that will validate the database structure using doctrine's command :
php bin/doctrine orm:validate-schema --skip-sync
The --skip-sync option it's required here because we sync the database using migration files and running tjhe command without it will result in an error.
We should consider adding a new github action that will validate the database structure using doctrine's command :
php bin/doctrine orm:validate-schema --skip-syncThe
--skip-syncoption it's required here because we sync the database using migration files and running tjhe command without it will result in an error.