Newer
Older
dmpopidor / db / migrate / 20180807121126_add_default_value_to_is_other_on_orgs.rb
class AddDefaultValueToIsOtherOnOrgs < ActiveRecord::Migration
  def up
    change_column :orgs, :is_other, :boolean, default: false, null: false
  end
  def down
    change_column :orgs, :is_other, :boolean, default: nil, null: true
  end
end