1 2 3 4 5 6 7 8 9 10 11
class CreateOuis < ActiveRecord::Migration def change create_table :ouis do |t| t.integer :manufacturer_id t.string :value t.string :state t.timestamps end end end