web/app/models/benchmark_duration.rb
changeset 44 0429d91be03e
child 108 69aa849f6930
--- /dev/null	Thu Jan 01 00:00:00 1970 +0000
+++ b/web/app/models/benchmark_duration.rb	Tue Jun 18 22:49:22 2013 +0200
@@ -0,0 +1,16 @@
+# == Schema Information
+#
+# Table name: benchmark_durations
+#
+#  id                  :integer          not null, primary key
+#  benchmark_result_id :integer
+#  duration            :integer
+#  created_at          :datetime
+#  updated_at          :datetime
+#
+
+class BenchmarkDuration < ActiveRecord::Base
+
+  belongs_to :benchmark_result, dependent: :destroy, inverse_of: :benchmark_durations
+
+end