package OpenILS::Application::Storage::CDBI::actor; our $VERSION = 1; #------------------------------------------------------------------------------- package actor; use base qw/OpenILS::Application::Storage::CDBI/; #------------------------------------------------------------------------------- package actor::user; use base qw/actor/; __PACKAGE__->table( 'actor_usr' ); __PACKAGE__->columns( Primary => qw/id/ ); __PACKAGE__->columns( Essential => qw/usrname email first_given_name second_given_name family_name billing_address claims_returned_count home_ou dob active master_account ident_type ident_value ident_type2 ident_value2 net_access_level photo_url create_date expire_date credit_forward_balance super_user usrgroup passwd card last_xact_id standing profile prefix suffix alert_message day_phone evening_phone other_phone mailing_address/ ); #------------------------------------------------------------------------------- package actor::user_standing_penalty; use base qw/actor/; __PACKAGE__->table( 'actor_user_standing_penalty' ); __PACKAGE__->columns( Primary => qw/id/); __PACKAGE__->columns( Essential => qw/usr penalty_type/); #------------------------------------------------------------------------------- package actor::user_setting; use base qw/actor/; __PACKAGE__->table( 'actor_user_setting' ); __PACKAGE__->columns( Primary => qw/id/); __PACKAGE__->columns( Essential => qw/usr name value/); #------------------------------------------------------------------------------- package actor::profile; use base qw/actor/; __PACKAGE__->table( 'actor_profile' ); __PACKAGE__->columns( Primary => qw/id/); __PACKAGE__->columns( Essential => qw/name/); #------------------------------------------------------------------------------- package actor::org_unit_type; use base qw/actor/; __PACKAGE__->table( 'actor_org_unit_type' ); __PACKAGE__->columns( Primary => qw/id/); __PACKAGE__->columns( Essential => qw/name opac_label depth parent can_have_vols can_have_users/); #------------------------------------------------------------------------------- package actor::org_unit; use base qw/actor/; __PACKAGE__->table( 'actor_org_unit' ); __PACKAGE__->columns( Primary => qw/id/); __PACKAGE__->columns( Essential => qw/parent_ou ou_type mailing_address billing_address ill_address holds_address shortname name/); #------------------------------------------------------------------------------- package actor::org_unit_setting; use base qw/actor/; __PACKAGE__->table( 'actor_org_unit_setting' ); __PACKAGE__->columns( Primary => qw/id/); __PACKAGE__->columns( Essential => qw/org_unit name value/); #------------------------------------------------------------------------------- package actor::stat_cat; use base qw/actor/; __PACKAGE__->table( 'actor_stat_cat' ); __PACKAGE__->columns( Primary => qw/id/ ); __PACKAGE__->columns( Essential => qw/owner name opac_visible/ ); #------------------------------------------------------------------------------- package actor::stat_cat_entry; use base qw/actor/; __PACKAGE__->table( 'actor_stat_cat_entry' ); __PACKAGE__->columns( Primary => qw/id/ ); __PACKAGE__->columns( Essential => qw/stat_cat owner value/ ); #------------------------------------------------------------------------------- package actor::stat_cat_entry_user_map; use base qw/actor/; __PACKAGE__->table( 'actor_stat_cat_entry_usr_map' ); __PACKAGE__->columns( Primary => qw/id/ ); __PACKAGE__->columns( Essential => qw/stat_cat stat_cat_entry target_usr/ ); #------------------------------------------------------------------------------- package actor::card; use base qw/actor/; __PACKAGE__->table( 'actor_card' ); __PACKAGE__->columns( Primary => qw/id/ ); __PACKAGE__->columns( Essential => qw/usr barcode active/ ); #------------------------------------------------------------------------------- package actor::user_access_entry; use base qw/actor/; #------------------------------------------------------------------------------- package actor::perm_group; use base qw/actor/; #------------------------------------------------------------------------------- package actor::permission; use base qw/actor/; #------------------------------------------------------------------------------- package actor::perm_group_permission_map; use base qw/actor/; #------------------------------------------------------------------------------- package actor::perm_group_user_map; use base qw/actor/; #------------------------------------------------------------------------------- package actor::user_address; use base qw/actor/; __PACKAGE__->table( 'actor_usr_address' ); __PACKAGE__->columns( Primary => qw/id/ ); __PACKAGE__->columns( Essential => qw/valid address_type usr street1 street2 city county state country post_code/ ); #------------------------------------------------------------------------------- package actor::org_address; use base qw/actor/; __PACKAGE__->table( 'actor_org_address' ); __PACKAGE__->columns( Primary => qw/id/ ); __PACKAGE__->columns( Essential => qw/valid address_type org_unit street1 street2 city county state country post_code/ ); #------------------------------------------------------------------------------- package actor::profile; use base qw/actor/; __PACKAGE__->table( 'actor_profile' ); __PACKAGE__->columns( Primary => qw/id/ ); __PACKAGE__->columns( Essential => qw/name/ ); #------------------------------------------------------------------------------- 1;