Sha256: 12c71d82f2c1b8c0947a07e5c6a63d4321b6a478e44e500890d0172db16469cf
Contents?: true
Size: 356 Bytes
Versions: 22
Compression:
Stored size: 356 Bytes
Contents
module Admin class Country < ActiveRecord::Base include Carnival::ModelHelper self.table_name = "countries" has_many :states has_many :cities accepts_nested_attributes_for :states, :reject_if => :all_blank, :allow_destroy => true accepts_nested_attributes_for :cities, :reject_if => :all_blank, :allow_destroy => true end end
Version data entries
22 entries across 22 versions & 1 rubygems