]> git.evergreen-ils.org Git - working/Evergreen.git/blob - Open-ILS/src/perlmods/OpenILS/Application/Storage/CDBI/actor.pm
8df2155777ce65455d7c143aa09619920b2f2a0c
[working/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( Essential => qw/usrname email first_given_name
14                                 second_given_name family_name billing_address
15                                 claims_returned_count home_ou dob
16                                 active master_account ident_type ident_value
17                                 ident_type2 ident_value2 net_access_level
18                                 photo_url create_date expire_date credit_forward_balance
19                                 super_user usrgroup passwd card last_xact_id
20                                 standing profile prefix suffix alert_message
21                                 day_phone evening_phone other_phone mailing_address/ );
22
23 #-------------------------------------------------------------------------------
24 package actor::user_standing_penalty;
25 use base qw/actor/;
26
27 __PACKAGE__->table( 'actor_user_standing_penalty' );
28 __PACKAGE__->columns( Primary => qw/id/);
29 __PACKAGE__->columns( Essential => qw/usr penalty_type/);
30
31 #-------------------------------------------------------------------------------
32 package actor::user_setting;
33 use base qw/actor/;
34
35 __PACKAGE__->table( 'actor_user_setting' );
36 __PACKAGE__->columns( Primary => qw/id/);
37 __PACKAGE__->columns( Essential => qw/usr name value/);
38
39 #-------------------------------------------------------------------------------
40 package actor::profile;
41 use base qw/actor/;
42
43 __PACKAGE__->table( 'actor_profile' );
44 __PACKAGE__->columns( Primary => qw/id/);
45 __PACKAGE__->columns( Essential => qw/name/);
46
47 #-------------------------------------------------------------------------------
48 package actor::org_unit_type;
49 use base qw/actor/;
50
51 __PACKAGE__->table( 'actor_org_unit_type' );
52 __PACKAGE__->columns( Primary => qw/id/);
53 __PACKAGE__->columns( Essential => qw/name opac_label depth parent can_have_vols can_have_users/);
54
55 #-------------------------------------------------------------------------------
56 package actor::org_unit;
57 use base qw/actor/;
58
59 __PACKAGE__->table( 'actor_org_unit' );
60 __PACKAGE__->columns( Primary => qw/id/);
61 __PACKAGE__->columns( Essential => qw/parent_ou ou_type mailing_address billing_address
62                                 ill_address holds_address shortname name/);
63
64 #-------------------------------------------------------------------------------
65 package actor::org_unit_setting;
66 use base qw/actor/;
67
68 __PACKAGE__->table( 'actor_org_unit_setting' );
69 __PACKAGE__->columns( Primary => qw/id/);
70 __PACKAGE__->columns( Essential => qw/org_unit name value/);
71
72
73 #-------------------------------------------------------------------------------
74 package actor::stat_cat;
75 use base qw/actor/;
76
77 __PACKAGE__->table( 'actor_stat_cat' );
78 __PACKAGE__->columns( Primary => qw/id/ );
79 __PACKAGE__->columns( Essential => qw/owner name opac_visible/ );
80
81 #-------------------------------------------------------------------------------
82 package actor::stat_cat_entry;
83 use base qw/actor/;
84
85 __PACKAGE__->table( 'actor_stat_cat_entry' );
86 __PACKAGE__->columns( Primary => qw/id/ );
87 __PACKAGE__->columns( Essential => qw/stat_cat owner value/ );
88
89 #-------------------------------------------------------------------------------
90 package actor::stat_cat_entry_user_map;
91 use base qw/actor/;
92
93 __PACKAGE__->table( 'actor_stat_cat_entry_usr_map' );
94 __PACKAGE__->columns( Primary => qw/id/ );
95 __PACKAGE__->columns( Essential => qw/stat_cat stat_cat_entry target_usr/ );
96
97 #-------------------------------------------------------------------------------
98 package actor::card;
99 use base qw/actor/;
100
101 __PACKAGE__->table( 'actor_card' );
102 __PACKAGE__->columns( Primary => qw/id/ );
103 __PACKAGE__->columns( Essential => qw/usr barcode active/ );
104
105 #-------------------------------------------------------------------------------
106 package actor::user_access_entry;
107 use base qw/actor/;
108 #-------------------------------------------------------------------------------
109 package actor::perm_group;
110 use base qw/actor/;
111 #-------------------------------------------------------------------------------
112 package actor::permission;
113 use base qw/actor/;
114 #-------------------------------------------------------------------------------
115 package actor::perm_group_permission_map;
116 use base qw/actor/;
117 #-------------------------------------------------------------------------------
118 package actor::perm_group_user_map;
119 use base qw/actor/;
120 #-------------------------------------------------------------------------------
121 package actor::user_address;
122 use base qw/actor/;
123
124 __PACKAGE__->table( 'actor_usr_address' );
125 __PACKAGE__->columns( Primary => qw/id/ );
126 __PACKAGE__->columns( Essential => qw/valid address_type usr street1 street2
127                                       city county state country post_code/ );
128
129 #-------------------------------------------------------------------------------
130 package actor::org_address;
131 use base qw/actor/;
132
133 __PACKAGE__->table( 'actor_org_address' );
134 __PACKAGE__->columns( Primary => qw/id/ );
135 __PACKAGE__->columns( Essential => qw/valid address_type org_unit street1 street2
136                                       city county state country post_code/ );
137
138 #-------------------------------------------------------------------------------
139 package actor::profile;
140 use base qw/actor/;
141
142 __PACKAGE__->table( 'actor_profile' );
143 __PACKAGE__->columns( Primary => qw/id/ );
144 __PACKAGE__->columns( Essential => qw/name/ );
145
146 #-------------------------------------------------------------------------------
147 1;
148