On 11/26/05, Kenneth Gonsalves <[EMAIL PROTECTED]> wrote:
> i have a table
> name varchar not null
> title varchar not null
> blurb varchar not null
>
> in django, if i want to insert a new record and just give a value
> for the 'name' field and no values for the rest - it gets saved.
> Postgresql should barf saying 'lack of value in xxx field violates
> not null constraint' but it doesnt. This looks very much like a
> serious bug to me

Django does indeed put in the "NOT NULL"s when outputting its CREATE
TABLE statements. What's happening in your case is that the title and
blurb fields are getting their default value, which is "" (the empty
string).

Adrian

--
Adrian Holovaty
holovaty.com | djangoproject.com | chicagocrime.org

Reply via email to