Sha256: 50f2e5ca8853f10933b5d5dcc91bbca879325166aedfa200c0899279b552b3ac
Contents?: true
Size: 750 Bytes
Versions: 53
Compression:
Stored size: 750 Bytes
Contents
# encoding: utf-8 class MagicAddresses::State < ActiveRecord::Base # =====> A S S O Z I A T I O N S <========================================================= # has_many :addresses, class_name: "MagicAddresses::Address", foreign_key: :state_id belongs_to :country, class_name: "MagicAddresses::Country", foreign_key: :country_id has_many :cities, class_name: "MagicAddresses::City", foreign_key: :state_id has_many :districts, through: :cities, source: :districts has_many :subdistricts, through: :districts, source: :subdistricts # =====> A T T R I B U T E S <============================================================= # mgca_translate :name end
Version data entries
53 entries across 53 versions & 1 rubygems