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

12 lines
193 B
Ruby

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