class CreateNestedChildren < ActiveRecord::Migration def self.up create_table :nested_children do |t| t.column :field, :string t.column :nested_parent_id, :integer end end def self.down drop_table :nested_children end end