Sha256: 5448386c125de21c7405ef204bfe7c4827ac99c8958b6872675823e5927f983b
Contents?: true
Size: 750 Bytes
Versions: 53
Compression:
Stored size: 750 Bytes
Contents
# 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
Version data entries
53 entries across 53 versions & 1 rubygems