Open-Source-Access-Control-.../db/migrate/20130201022153_create_mac_logs.rb

12 lines
193 B
Ruby
Raw Normal View History

class CreateMacLogs < ActiveRecord::Migration
def change
create_table :mac_logs do |t|
t.string :mac
t.string :ip
t.string :action
t.timestamps
end
end
end