class CreateRtmlInstructions < ActiveRecord::Migration def self.up create_table :rtml_instructions do |t| t.string :name t.text :arguments t.references :source, :polymorphic => true t.timestamps end end def self.down drop_table :rtml_instructions end end