You can use fixtures. In your application folder, create a "fixtures" folder and in that folder create a "initial_data.json" file. Populate it like this:
[ { "pk": 1, "model": "application.Contact", "fields": { "name": "Vincent" } } ] And when you run syncdb, the data will be added. Vincent. On Apr 25, 11:00 am, Greg Taylor <[EMAIL PROTECTED]> wrote: > Greetings, > > I was wondering if there's a way to include initial data for Django > classes. I noticed that there is a way to do so via a 'sql' > subdirectory under your own models, but didn't see any indication if > there was a way to do this for base Django classes. --~--~---------~--~----~------------~-------~--~----~ 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 [EMAIL PROTECTED] For more options, visit this group at http://groups.google.com/group/django-users?hl=en -~----------~----~----~----~------~----~------~--~---