I want to fill a database table as soon as it is created first time, may be with running the following command:
php bin/console doctrine:schema:update --force --em=some_connection
Basically, this will be a static table with some static data. I need to do this in that way because the database will be created dynamically. So cannot populate that by hard coding.