Files
openfoodnetwork/app/models/spree/country.rb
2020-08-06 01:41:28 +01:00

18 lines
273 B
Ruby

# frozen_string_literal: true
module Spree
class Country < ActiveRecord::Base
has_many :states, -> { order('name ASC') }
validates :name, :iso_name, presence: true
def <=>(other)
name <=> other.name
end
def to_s
name
end
end
end