As much as I know, a fixture is "something used to consistently test some item, device, or piece of software". It should be used only in dev and test environnement.
My context : I have a web app which proposes to sell 5 specific products. There is not a backoffice to edit/remove/add a product, but there is a backoffice to modify product prices and description, that is why I need the 5 products in a database. To initialize the app, I would want to insert my 5 products in the database (by the code).
I could use fixtures to insert products in my database, but I think it's not the job of the fixture which should only be used in "dev" or "test" env.
"doctrine:schema:update" doesn't seem to be the right solution either, because it only updates the schema (the structure of my database), it's not about data.
Is there a way to insert "static data" in my database with Symfony3 ? A system of data migration ? Is there a right way to do ? Using the doctrine-migrations-bundle ?