andrewhao/cyclecity-core

View on GitHub
app/models/commuting/stop_report.rb

Summary

Maintainability
A
0 mins
Test Coverage
module Commuting
  class StopReport < ActiveRecord::Base
    self.table_name = :commuting_stop_reports

    belongs_to :commuting_commute, class_name: 'Commuting::Commute'
  end
end