]> git.evergreen-ils.org Git - Evergreen.git/blob - Open-ILS/src/perlmods/OpenILS/Application/Storage/CDBI/actor.pm
fixing typo in the "actor" stuff
[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( Primary => qw/id/ );
13 __PACKAGE__->columns( Others => qw/id usrid usrname email prefix first_given_name
14                                 second_given_name family_name suffix address
15                                 home_ou gender dob active master_account
16                                 super_user usrgroup passwd/ );
17
18 #-------------------------------------------------------------------------------
19 package actor::org_unit_type;
20 use base qw/actor/;
21
22 __PACKAGE__->table( 'actor_org_unit_type' );
23 __PACKAGE__->columns( Primary => qw/id/);
24 __PACKAGE__->columns( Others => qw/name depth parent can_have_users/);
25
26 #-------------------------------------------------------------------------------
27 package actor::org_unit;
28 use base qw/actor/;
29 #-------------------------------------------------------------------------------
30 package actor::user_access_entry;
31 use base qw/actor/;
32 #-------------------------------------------------------------------------------
33 package actor::perm_group;
34 use base qw/actor/;
35 #-------------------------------------------------------------------------------
36 package actor::permission;
37 use base qw/actor/;
38 #-------------------------------------------------------------------------------
39 package actor::perm_group_permission_map;
40 use base qw/actor/;
41 #-------------------------------------------------------------------------------
42 package actor::perm_group_user_map;
43 use base qw/actor/;
44 #-------------------------------------------------------------------------------
45 package actor::user_address;
46 use base qw/actor/;
47 #-------------------------------------------------------------------------------
48 1;
49