How to set initial data (not test data) in Symfony with doctrine ORM
问题 I am new to learning Symfony, (Symfony 4.1.6) and can't figure this out. I have a database, and it contains a lot of tables for populating html select type inputs. they are in the database to ensure Foreign Key constraints in other records. Is there a way to "add" this data to the database and track it? (via git) or should I resort to keeping an SQL file of just the "inserts" I have looked at Fixtures but they seem to be mostly for dummy data. I want to insert real data. What is the "best