class CreateEncodings < ActiveRecord::Migration def self.up create_table :encodings do |t| t.string :name t.integer :mibenum t.text :source end end def self.down drop_table :encodings end end