On 1/16/07, Jeffrey Zelt <[EMAIL PROTECTED]> wrote: ...
Does anyone know how to package such PostgreSQL trigger/function definitions in the initialization files mentioned above, so that Django will automatically create them for you (i.e., during "syncdb")?
See telenieko's response, but in general, django uses signals for this sort of thing. Django.db.models.signals.post_syncdb is the one you care about. This is how the auth app offers to create a superuser after it is first installed. See django.contrib.auth.management for the connection example. It's dispatched from django.core.management. --~--~---------~--~----~------------~-------~--~----~ 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 -~----------~----~----~----~------~----~------~--~---