Skip to content
Snippets Groups Projects

Resource specific hours

Merged Tyler R Lemburg requested to merge resource-specific-hours into master
11 files
+ 592
96
Compare changes
  • Side-by-side
  • Inline
Files
11
require 'active_record'
class AddResourceHours < ActiveRecord::Migration
def change
create_table :resource_hours do |t|
t.integer :resource_id
t.integer :day_of_week
t.datetime :effective_date
t.boolean :one_off
t.string :hours
end
end
end
\ No newline at end of file
Loading