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.

I have the following ActiveRecord migration:

class CreateSubjects < ActiveRecord::Migration
  def self.up
    create_table :subjects do |t|
      t.string :title
      t.timestamps
    end

    change_table :projects do |t|
      t.references :subjects
    end
  end

  def self.down
    drop_table :subjects
    remove_column :projects, :subjects_id #defeats the purpose of having references
  end
end

I actually like the references style. Unfortunately I could not find the rollback equivalent of references in the self.down section. If I write remove_column :projects, :subjects_id I can as well write t.integer :subjects_id, which would make it safer.

share|improve this question

1 Answer

up vote 6 down vote accepted

It is called remove_references.

t.remove_references :subjects

Be careful! Rails uses singular by convention, should be:

def self.up
  create_table :subjects do |t|
    t.string :title
    t.timestamps
  end

  change_table :projects do |t|
    t.references :subject
  end
end

def self.down
  drop_table :subjects
  change_table :projects do |t|
    t.remove_references :subject
  end
end
share|improve this answer
Ok, I'm officially unable to read the documentation: api.rubyonrails.org/classes/ActiveRecord/ConnectionAdapters/… – sebastiangeiger May 5 '11 at 13:25

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.