class CreateRtmlDocuments < ActiveRecord::Migration def self.up create_table :rtml_documents do |t| t.string :name t.text :description t.boolean :cache_on_terminal t.timestamps end end def self.down drop_table :rtml_documents end end