Newer
Older
dmpopidor / db / migrate / 20180807114052_add_default_value_to_published_on_guidance_groups.rb
class AddDefaultValueToPublishedOnGuidanceGroups < ActiveRecord::Migration
  def up
    change_column :guidance_groups, :published, :boolean, default: false, null: false
  end
  def down
    change_column :guidance_groups, :published, :boolean, default: nil, null: true
  end
end