Got door logs working

This commit is contained in:
2012-08-24 23:28:00 -07:00
parent b28efe046c
commit 8b775d9172
22 changed files with 324 additions and 241 deletions

View File

@@ -0,0 +1,10 @@
class CreateDoorLogs < ActiveRecord::Migration
def change
create_table :door_logs do |t|
t.string :key
t.integer :data
t.timestamps
end
end
end