You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Charlatan seems like a very nice way to manage and load fixture data. Is it possible to go the other way, and generate fixtures from an existing database?
Django's fixture management lets you do this via manage.py dumpdata. It's a useful way to capture database state to something that's human readable/editable and less brittle than sqldump.
Charlatan seems like a very nice way to manage and load fixture data. Is it possible to go the other way, and generate fixtures from an existing database?
Django's fixture management lets you do this via
manage.py dumpdata. It's a useful way to capture database state to something that's human readable/editable and less brittle than sqldump.Thanks.