summaryrefslogtreecommitdiff
path: root/db/migrate/20111012113547_create_ouis.rb
blob: ad81508439674576bc65a6bf749095abb0dff109 (plain)
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