added the PTO section

This commit is contained in:
Ken Johnson
2013-05-24 20:54:07 -04:00
parent 3fb341553c
commit af763d40bf
14 changed files with 119 additions and 12 deletions
@@ -0,0 +1,13 @@
class CreatePaidTimeOffs < ActiveRecord::Migration
def change
create_table :paid_time_offs do |t|
t.integer :user_id
t.integer :sick_days_taken
t.integer :sick_days_earned
t.integer :pto_taken
t.integer :pto_earned
t.timestamps
end
end
end