Re: [Rails] Change databaase column

2010-09-21 Thread Colin Law
On 21 September 2010 12:31, Hemant Bhargava wrote: > Guys, > > I have create this database column a while ago- > t.date :interview_date, :null => false means that this column can not > have null value and then i deployed it on my server. Now i want this > column to be changed as > t.date :intervie

[Rails] Change databaase column

2010-09-21 Thread Hemant Bhargava
Guys, I have create this database column a while ago- t.date :interview_date, :null => false means that this column can not have null value and then i deployed it on my server. Now i want this column to be changed as t.date :interview_date, :null => true so that my column can accept null values al