Newer
Older
dmpopidor / db / migrate / 20130903072531_remove_organisation_id_from_user.rb
@Marta Ribeiro Marta Ribeiro on 3 Jun 2016 189 bytes DMPonline4 - RAILS 4.0 (#4)
class RemoveOrganisationIdFromUser < ActiveRecord::Migration
  def up
  	remove_column :users, :organisation_id
  end

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