Symfony2, How to load fixtures with --fixtures option?

后端 未结 3 1635
后悔当初
后悔当初 2021-02-07 02:14

I need an example for command below in Symfony2 :

php app/console doctrine:mongodb:fixtures:load --fixtures=/path/to/fixture 

I don\'t know how

3条回答
  •  隐瞒了意图╮
    2021-02-07 02:54

    I know this is old but other people have asked and these answers may not cover some of the other questions.

    You only need to specify the folder, not the file. In the above question, its not clear if FeatureFixtures is the php file or actually a folder. It may be failing if that is only a php file and not a folder. This is the correct way to load the fixtures assuming that FeatureFixtures is a php file with the fixtures:

    doctrine:fixtures:load --fixtures=src/PMI/UserBundle/DataFixtures/ORM --append
    

提交回复
热议问题