If I have a yml data fixture file called mydata.yml
User:
anonymous:
nickname: anonymous
first_name: Anonymous
david:
nickname: david
first_name: David
How do I tell propel where to find this file. Do I need to add any instructions to the build.properties
and how do I run it to insert the data into the database (I've already done propel-gen insert-sql
, do I need to repeat it or something)
Note: I'm using Propel in a php project not a Symfony project so don't have access to any settings Symfony may have added if any.