web/app/models/benchmark_duration.rb
changeset 44 0429d91be03e
child 108 69aa849f6930
equal deleted inserted replaced
43:a2606a0342cf 44:0429d91be03e
       
     1 # == Schema Information
       
     2 #
       
     3 # Table name: benchmark_durations
       
     4 #
       
     5 #  id                  :integer          not null, primary key
       
     6 #  benchmark_result_id :integer
       
     7 #  duration            :integer
       
     8 #  created_at          :datetime
       
     9 #  updated_at          :datetime
       
    10 #
       
    11 
       
    12 class BenchmarkDuration < ActiveRecord::Base
       
    13 
       
    14   belongs_to :benchmark_result, dependent: :destroy, inverse_of: :benchmark_durations
       
    15 
       
    16 end