Sha256: 83fc83b1c90365447fba7e740968b9063b382a43f40af13fc274fff47989d3d0
Contents?: true
Size: 337 Bytes
Versions: 9
Compression:
Stored size: 337 Bytes
Contents
module Georgia class UiSection < ActiveRecord::Base attr_accessible :name has_many :ui_associations, dependent: :destroy has_many :widgets, through: :ui_associations has_many :revisions, through: :ui_associations has_many :pages, through: :revisions validates :name, presence: true, uniqueness: true end end
Version data entries
9 entries across 9 versions & 1 rubygems