internetee-registry/app/models/registrar.rb
2014-09-05 12:16:02 +03:00

10 lines
152 B
Ruby

class Registrar < ActiveRecord::Base
belongs_to :country
has_many :domains
has_many :ns_sets
has_many :epp_users
def to_s
name
end
end