class CreateManufacturers < ActiveRecord::Migration def self.up create_table :manufacturers do |t| t.string :name t.string :ieee_name t.string :homepage_url t.string :state t.timestamps end end def self.down drop_table :manufacturers end end