bus-detective/bus-detective

View on GitHub
app/models/route.rb

Summary

Maintainability
A
0 mins
Test Coverage
class Route < ActiveRecord::Base
  has_many :trips, dependent: :destroy
  has_many :route_stops, dependent: :destroy
  has_many :stops, through: :route_stops
  belongs_to :agency
end