summaryrefslogtreecommitdiff
path: root/app/models/related_asset.rb
blob: af09420638e6611510d93a8f2125dbf17d923d67 (plain)
1
2
3
4
5
6
7
8
class RelatedAsset < ActiveRecord::Base
  belongs_to :page
  belongs_to :asset
  
  acts_as_list :scope => :page_id
  
  default_scope :order => "position ASC"
end