On 3/7/07, akonsu <[EMAIL PROTECTED]> wrote: > > hello, > > i am using fixtures for site deployment. it would be perfect if i > could pull large amounts of data for fields in to my fixtures file > from external files. say, for example, my models have text fields that > contain html markup. i am pretty sure this cannot be done but i wanted > to ask anyways to make sure. is this possible?
Yes - you just need to put the data in a fixture compatible format. If you want an example of what the fixture should look like, manually create some sample data in your database, and use './manage.py dumpdata' to output a fixture. Yours, Russ Magee %-) --~--~---------~--~----~------------~-------~--~----~ You received this message because you are subscribed to the Google Groups "Django users" group. To post to this group, send email to [email protected] To unsubscribe from this group, send email to [EMAIL PROTECTED] For more options, visit this group at http://groups.google.com/group/django-users?hl=en -~----------~----~----~----~------~----~------~--~---

