# encoding: utf-8 class MagicAddresses::Subdistrict < ActiveRecord::Base # =====> A S S O Z I A T I O N S <========================================================= # has_many :addresses, class_name: "MagicAddresses::Address", foreign_key: :subdistrict_id belongs_to :city, class_name: "MagicAddresses::City", foreign_key: :city_id belongs_to :district, class_name: "MagicAddresses::District", foreign_key: :district_id has_one :state, through: :city, source: :state has_one :country, through: :state, source: :country # =====> A T T R I B U T E S <============================================================= # mgca_translate :name end