Re: Can I perform an "alter table" to remove a "not null" constraint?

2011-05-31 Thread Kirill Spitsin
On Mon, May 30, 2011 at 09:52:27PM -0700, Gchorn wrote: > It seems as though the default in Django when creating tables is to > place a constraint that doesn't allow null values (contrary to what > I've learned is the default for SQL in general). I have a model which > has a date attribute, and wh

Can I perform an "alter table" to remove a "not null" constraint?

2011-05-30 Thread Gchorn
It seems as though the default in Django when creating tables is to place a constraint that doesn't allow null values (contrary to what I've learned is the default for SQL in general). I have a model which has a date attribute, and which I now want to be able to hold null values, but when I tried