south. I am using south to migrate some fixture data for a django app.
Also something worth noting is I am bringing south new into the django
app it was not part of installed apps till now . So the workflow I
have followed till now is
run syncdb to install south
create a fake initial migration using convert_to_south command
create the actual schema migration script for my app using --auto
create a data migration script with a forward function for the added field
run python manage.py migrate myapp
Now obviously I get an error related to fixtures not getting installed
. Because I haven't actually changed the data on my fixtures how can I
do that(Also when should I do that) . My confusion also is that if I
dump data now to create new fixtures I will be creating trouble for my
collaborators since when they run syncdb to install south
in the end of syncdb when fixtures are installed they will
have problems because of the change in fixtures ??
--
A-M-I-T S|S
--
You received this message because you are subscribed to the Google Groups "Django users" group.
To post to this group, send email to django-users@googlegroups.com.
To unsubscribe from this group, send email to django-users+unsubscribe@googlegroups.com.
For more options, visit this group at http://groups.google.com/group/django-users?hl=en.
No comments:
Post a Comment