]> git.evergreen-ils.org Git - Evergreen.git/blob - Open-ILS/src/perlmods/OpenILS/Application/Storage/CDBI/actor.pm
EETS ALIVE!!!!!!!
[Evergreen.git] / Open-ILS / src / perlmods / OpenILS / Application / Storage / CDBI / actor.pm
1 package OpenILS::Application::Storage::CDBI::actor;
2 our $VERSION = 1;
3
4 #-------------------------------------------------------------------------------
5 package actor;
6 use base qw/OpenILS::Application::Storage::CDBI/;
7 #-------------------------------------------------------------------------------
8 package actor::user;
9 use base qw/actor/;
10
11 __PACKAGE__->table( 'actor_usr' );
12 __PACKAGE__->columns( All => qw/id userid username email prefix first_given_name
13                                 second_given_name family_name suffix address
14                                 home_ou gender dob active master_account
15                                 super_user usergoup passwd/ );
16
17 #-------------------------------------------------------------------------------
18 package actor::org_unit_type;
19 use base qw/actor/;
20
21 __PACKAGE__->table( 'actor_org_unit_type' );
22 __PACKAGE__->columns( All => qw/id name depth parent can_have_users/);
23
24 #-------------------------------------------------------------------------------
25 package actor::org_unit;
26 use base qw/actor/;
27 #-------------------------------------------------------------------------------
28 package actor::user_access_entry;
29 use base qw/actor/;
30 #-------------------------------------------------------------------------------
31 package actor::perm_group;
32 use base qw/actor/;
33 #-------------------------------------------------------------------------------
34 package actor::permission;
35 use base qw/actor/;
36 #-------------------------------------------------------------------------------
37 package actor::perm_group_permission_map;
38 use base qw/actor/;
39 #-------------------------------------------------------------------------------
40 package actor::perm_group_user_map;
41 use base qw/actor/;
42 #-------------------------------------------------------------------------------
43 package actor::user_address;
44 use base qw/actor/;
45 #-------------------------------------------------------------------------------
46 1;
47