class LinkAuthorsAndBooks < ActiveRecord::Migration def self.up add_column :authors, :book_id, :integer # Author.find(:all).each { |author| author.book = Book.find(:first); author.save } end def self.down remove_column :authors, :book_id end end