Re: Postgresql Triggers and Django

2014-12-04 Thread Carl Meyer
Hi Philip, On 12/04/2014 02:28 PM, Philip Haynes wrote: > Hi, > I have tracked back through the messages in this group and examined the > documentation for version 1.7 of Django and I have a question. > > The 1.7 documentation > (https://docs.djangoproject.com/en/1.7/howto/initial-data/) > des

Re: Postgresql Triggers and Django

2014-12-04 Thread Andreas Kuhne
Hi Philip, I ran into this problem earlier today actually. The problem is that you can't provide initial data for populating the models (or tables). That's what this refers to. To provide initial data, you have to run a migration. The initial-data information is only for loading the database with

Postgresql Triggers and Django

2014-12-04 Thread Philip Haynes
Hi, I have tracked back through the messages in this group and examined the documentation for version 1.7 of Django and I have a question. The 1.7 documentation (https://docs.djangoproject.com/en/1.7/howto/initial-data/) describes the "Providing initial SQL data" functionality as deprecated. Is