class ManufactureProductDetail < CommLogistics::Base::Model::Detail
  include Comm::Module::Model::Logging
  belongs_to :manufacture
  belongs_to :manufacture_detail
  named_scope :child, lambda {|id| {:conditions => ["manufacture_detail_id = ?", id]}}
  
  class << columns_hash['ubd']
    def type
      :string
    end
  end
  class << columns_hash['parent_ubd']
    def type
      :string
    end
  end

end