I have a Django 1.6.2 application, some of model logics (overrided "save" methods and signal event handlers), and I use the loaddata fixture\data.json
command to populate the initial database.
But, problem is - loaddata doesn't triggering the save
methods and doesn't sent the signal
. It's just dump data's to base...
Can you suggest the fixture- or populate-method for initialaze the base with data + all models logic?