I had originally created a table with column as
t.string \"email\", :default => \"\", :null => false
The requirement has changed and n
Try:
change_column :table_name, :email, :string, :null => true