Skip to content

Instantly share code, notes, and snippets.

@DemitryT
Created September 24, 2012 18:02
Show Gist options
  • Save DemitryT/3777329 to your computer and use it in GitHub Desktop.
Save DemitryT/3777329 to your computer and use it in GitHub Desktop.
migration
class ChangeAgentProfilesContactForm < ActiveRecord::Migration
def self.up
change_column :settings, :agent_profiles_contact_form, :boolean, :default => true, :null => false
end
def self.down
change_column :settings, :agent_profiles_contact_form, :boolean
end
end
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment