Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

After creating a migration file with rails generate migration AddClientToUser I can edit my migration file like so:

class AddClientToUser < ActiveRecord::Migration
  def self.up
    change_table :users do |t|
      t.references :client
    end
  end

  def self.down
    change_table :users do |t|
      t.remove :client_id
    end
  end
end

Is this the correct way to reverse the reference column added in the migration?

share|improve this question

1 Answer

up vote 4 down vote accepted

that is right! and you could also go with:

  def self.down
      remove_column :users, :client_id
  end
share|improve this answer
Great to know! I wasn't sure if there was some special Foreign Key magic that was made with the reference that would not be cleanly disposed of when the column was simply removed. But wouldn't your example be just remove_column not t.remove_column ?? – Matt Connolly Apr 13 '11 at 13:04
yes.I was copying the text from yours and forgot that :) – Daniel Apr 13 '11 at 13:06
You can also now use the remove_references syntax. – Binary Phile Aug 26 '12 at 4:41

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.