Re: filling in AutoField

2008-07-02 Thread Rajesh Dhawan
Hi Greg, On Jul 2, 5:29 pm, "Grzegorz Dostatni" <[EMAIL PROTECTED]> wrote: > I'm writing a django application (postgresql db) that needs to deal with > input both from GUI (webserver) and commandline (parsing text input). > > I've got a model defined where I explicitly define the id field using:

filling in AutoField

2008-07-02 Thread Grzegorz Dostatni
I'm writing a django application (postgresql db) that needs to deal with input both from GUI (webserver) and commandline (parsing text input). I've got a model defined where I explicitly define the id field using: id = models.AutoField(primary_key = True) When I'm creating a new entry, is th