]> git.evergreen-ils.org Git - Evergreen.git/blob - Open-ILS/src/perlmods/OpenILS/Application/Storage/CDBI/asset.pm
lots of cleanup... no testing yet, no data to test
[Evergreen.git] / Open-ILS / src / perlmods / OpenILS / Application / Storage / CDBI / asset.pm
1 package OpenILS::Application::Storage::CDBI::asset;
2 our $VERSION = 1;
3
4 #-------------------------------------------------------------------------------
5 package asset;
6 use base qw/OpenILS::Application::Storage::CDBI/;
7 #-------------------------------------------------------------------------------
8 package asset::call_number;
9 use base qw/asset/;
10
11 __PACKAGE__->table( 'asset_call_number' );
12 __PACKAGE__->columns( All => qw/id record label/ );
13
14 #-------------------------------------------------------------------------------
15 package asset::copy;
16 use base qw/asset/;
17
18 __PACKAGE__->table( 'asset_copy' );
19 __PACKAGE__->columns( All => qw/id call_number barcode/ );
20
21 #-------------------------------------------------------------------------------
22 1;
23