class Asset < ActiveRecord::Base has_many :contents, :through => :asset_assignments has_many :asset_assignments, :order => 'position', :dependent => :delete_all has_attached_file :attachment, :styles => {:thumb => '100x100>'} # doesn't resize for some reason, check! end