porkchopclub/porkchop

View on GitHub
app/models/league.rb

Summary

Maintainability
A
0 mins
Test Coverage
class League < ActiveRecord::Base
  has_many :seasons
  belongs_to :table

  validates :name, :table, presence: true
end