# == Schema Information # Schema version: 20080627025704 # # Table name: opening_hours # # id :integer(11) not null, primary key # location_id :integer(11) not null # day_of_week :integer(4) not null # open :time # close :time # created_at :datetime # updated_at :datetime # closed :boolean(1) # class OpeningHour < ActiveRecord::Base belongs_to :location end