Sha256: fa7fcf6a4d3f4c8479d28e2684dd1c4a0dbb163f89522c12b17db1dddcb82a24
Contents?: true
Size: 1.09 KB
Versions: 3
Compression:
Stored size: 1.09 KB
Contents
class Country < ActiveRecord::Base attr_accessible :name, :display_name, :alpha_2, :alpha_3, :numeric_3, :note include MasterModel default_scope order: "countries.position" has_many :agents #has_many :people #has_many :corporate_bodies #has_many :families has_many :libraries has_one :library_group # If you wish to change the field names for brevity, feel free to enable/modify these. # alias_attribute :iso, :alpha_2 # alias_attribute :iso3, :alpha_3 # alias_attribute :numeric, :numeric_3 # Validations validates_presence_of :alpha_2, :alpha_3, :numeric_3 after_save :clear_all_cache after_destroy :clear_all_cache def self.all_cache Rails.cache.fetch('country_all'){Country.all.to_a} end def clear_all_cache Rails.cache.delete('country_all') end end # == Schema Information # # Table name: countries # # id :integer not null, primary key # name :string(255) not null # display_name :text # alpha_2 :string(255) # alpha_3 :string(255) # numeric_3 :string(255) # note :text # position :integer #
Version data entries
3 entries across 3 versions & 1 rubygems
Version | Path |
---|---|
enju_biblio-0.1.0.pre58 | app/models/country.rb |
enju_biblio-0.1.0.pre57 | app/models/country.rb |
enju_biblio-0.1.0.pre56 | app/models/country.rb |