Sha256: d48f9773aa790b4e48d292eda224a8ee2dfa3ea50f55179425cf337012317cc4
Contents?: true
Size: 747 Bytes
Versions: 53
Compression:
Stored size: 747 Bytes
Contents
# encoding: utf-8 class MagicAddresses::District < ActiveRecord::Base # =====> A S S O Z I A T I O N S <========================================================= # has_many :addresses, class_name: "MagicAddresses::Address", foreign_key: :district_id belongs_to :city, class_name: "MagicAddresses::City", foreign_key: :city_id has_one :state, through: :city, source: :state has_one :country, through: :state, source: :country has_many :subdistricts, class_name: "MagicAddresses::District", foreign_key: :district_id # =====> A T T R I B U T E S <============================================================= # mgca_translate :name end
Version data entries
53 entries across 53 versions & 1 rubygems