vegantech/sims

View on GitHub
app/models/frequency.rb

Summary

Maintainability
A
0 mins
Test Coverage
# == Schema Information
# Schema version: 20101101011500
#
# Table name: frequencies
#
#  id         :integer(4)      not null, primary key
#  title      :string(255)
#  created_at :datetime
#  updated_at :datetime
#

class Frequency < ActiveRecord::Base
  def self.all_cache
    order("id")
  end

  def to_s
    title
  end
end