Signed-off-by: Mike Rylander <mrylander@gmail.com>
__PACKAGE__->columns( Essential => qw/name owning_lib holdable hold_verify opac_visible circulate label_prefix label_suffix checkin_alert deleted/ );
#-------------------------------------------------------------------------------
+package asset::copy_location_group;
+use base qw/asset/;
+
+__PACKAGE__->table( 'asset_copy_location_group' );
+__PACKAGE__->columns( Primary => qw/id/ );
+__PACKAGE__->columns( Essential => qw/name owner pos top opac_visible/ );
+
+#-------------------------------------------------------------------------------
package asset::copy_location_order;
use base qw/asset/;
asset::copy_location->sequence( 'asset.copy_location_id_seq' );
#---------------------------------------------------------------------
+ package asset::copy_location_group;
+
+ asset::copy_location_group->table( 'asset.copy_location_group' );
+ asset::copy_location_group->sequence( 'asset.copy_location_group_id_seq' );
+
+ #---------------------------------------------------------------------
package asset::copy;
asset::copy->table( 'asset.copy' );