class CreateRtmlDomElements < ActiveRecord::Migration def self.up create_table :rtml_dom_elements do |t| t.string :name t.string :type, :default => 'Rtml::Dom::Element' t.references :parent t.references :document t.timestamps end end def self.down drop_table :rtml_dom_elements end end