Newer
Older
dmpopidor / db / migrate / 20130903072531_remove_organisation_id_from_user.rb
class RemoveOrganisationIdFromUser < ActiveRecord::Migration
  def up
  	remove_column :users, :organisation_id
  end

  def down
  	add_column :users, :organisation_id, :integer
  end
end