]> git.evergreen-ils.org Git - Evergreen.git/blob - Open-ILS/src/perlmods/OpenILS/Application/Storage/Driver/Pg/dbi.pm
8553161b985564b652d200f6a5fed392d6be047e
[Evergreen.git] / Open-ILS / src / perlmods / OpenILS / Application / Storage / Driver / Pg / dbi.pm
1 {
2
3         #-------------------------------------------------------------------------------
4         package container::user_bucket;
5
6         container::user_bucket->table( 'container.user_bucket' );
7         container::user_bucket->sequence( 'container.user_bucket_id_seq' );
8
9         #-------------------------------------------------------------------------------
10         package container::user_bucket_item;
11
12         container::user_bucket_item->table( 'container.user_bucket_item' );
13         container::user_bucket_item->sequence( 'container.user_bucket_item_id_seq' );
14
15         #-------------------------------------------------------------------------------
16         package container::copy_bucket;
17
18         container::copy_bucket->table( 'container.copy_bucket' );
19         container::copy_bucket->sequence( 'container.copy_bucket_id_seq' );
20
21         #-------------------------------------------------------------------------------
22         package container::copy_bucket_item;
23
24         container::copy_bucket_item->table( 'container.copy_bucket_item' );
25         container::copy_bucket_item->sequence( 'container.copy_bucket_item_id_seq' );
26
27         #-------------------------------------------------------------------------------
28         package container::call_number_bucket;
29
30         container::call_number_bucket->table( 'container.call_number_bucket' );
31         container::call_number_bucket->sequence( 'container.call_number_bucket_id_seq' );
32
33         #-------------------------------------------------------------------------------
34         package container::call_number_bucket_item;
35
36         container::call_number_bucket_item->table( 'container.call_number_bucket_item' );
37         container::call_number_bucket_item->sequence( 'container.call_number_bucket_item_id_seq' );
38
39         #-------------------------------------------------------------------------------
40         package container::biblio_record_entry_bucket;
41
42         container::biblio_record_entry_bucket->table( 'container.biblio_record_entry_bucket' );
43         container::biblio_record_entry_bucket->sequence( 'container.biblio_record_entry_bucket_id_seq' );
44
45         #-------------------------------------------------------------------------------
46         package container::biblio_record_entry_bucket_item;
47
48         container::biblio_record_entry_bucket_item->table( 'container.biblio_record_entry_bucket_item' );
49         container::biblio_record_entry_bucket_item->sequence( 'container.biblio_record_entry_bucket_item_id_seq' );
50
51         #---------------------------------------------------------------------
52         package money::grocery;
53         
54         money::grocery->table( 'money.grocery' );
55         money::grocery->sequence( 'money.billable_xact_id_seq' );
56
57         #---------------------------------------------------------------------
58         package money::billable_transaction;
59         
60         money::billable_transaction->table( 'money.billable_xact' );
61         money::billable_transaction->sequence( 'money.billable_xact_id_seq' );
62
63         #---------------------------------------------------------------------
64         package money::billing;
65         
66         money::billing->table( 'money.billing' );
67         money::billing->sequence( 'money.billing_id_seq' );
68
69         #---------------------------------------------------------------------
70         package money::payment;
71         
72         money::payment->table( 'money.payment_view' );
73
74         #---------------------------------------------------------------------
75         package money::cash_payment;
76         
77         money::cash_payment->table( 'money.cash_payment' );
78         money::cash_payment->sequence( 'money.payment_id_seq' );
79
80         #---------------------------------------------------------------------
81         package money::check_payment;
82         
83         money::check_payment->table( 'money.check_payment' );
84         money::check_payment->sequence( 'money.payment_id_seq' );
85
86         #---------------------------------------------------------------------
87         package money::credit_payment;
88         
89         money::credit_payment->table( 'money.credit_payment' );
90         money::credit_payment->sequence( 'money.payment_id_seq' );
91
92         #---------------------------------------------------------------------
93         package money::credit_card_payment;
94         
95         money::credit_card_payment->table( 'money.credit_card_payment' );
96         money::credit_card_payment->sequence( 'money.payment_id_seq' );
97
98         #---------------------------------------------------------------------
99         package money::work_payment;
100         
101         money::work_payment->table( 'money.work_payment' );
102         money::work_payment->sequence( 'money.payment_id_seq' );
103
104         #---------------------------------------------------------------------
105         package money::forgive_payment;
106         
107         money::forgive_payment->table( 'money.forgive_payment' );
108         money::forgive_payment->sequence( 'money.payment_id_seq' );
109
110         #---------------------------------------------------------------------
111         package money::open_billable_transaction_summary;
112         
113         money::open_billable_transaction_summary->table( 'money.open_billable_xact_summary' );
114
115         #---------------------------------------------------------------------
116         package money::billable_transaction_summary;
117         
118         money::billable_transaction_summary->table( 'money.billable_xact_summary' );
119
120         #---------------------------------------------------------------------
121         package money::open_user_summary;
122         
123         money::open_user_summary->table( 'money.open_usr_summary' );
124
125         #---------------------------------------------------------------------
126         package money::user_summary;
127         
128         money::user_summary->table( 'money.usr_summary' );
129
130         #---------------------------------------------------------------------
131         package money::open_user_circulation_summary;
132         
133         money::open_user_circulation_summary->table( 'money.open_usr_circulation_summary' );
134
135         #---------------------------------------------------------------------
136         package money::user_circulation_summary;
137         
138         money::user_circulation_summary->table( 'money.usr_circulation_summary' );
139
140         #---------------------------------------------------------------------
141         package action::circulation;
142         
143         action::circulation->table( 'action.circulation' );
144         action::circulation->sequence( 'money.billable_xact_id_seq' );
145
146         #---------------------------------------------------------------------
147         package action::in_house_use;
148         
149         action::in_house_use->table( 'action.in_house_use' );
150         action::in_house_use->sequence( 'action.in_house_use_id_seq' );
151
152         #---------------------------------------------------------------------
153         package action::non_cataloged_circulation;
154         
155         action::non_cataloged_circulation->table( 'action.non_cataloged_circulation' );
156         action::non_cataloged_circulation->sequence( 'action.non_cataloged_circulation_id_seq' );
157
158         #---------------------------------------------------------------------
159         package action::open_circulation;
160         
161         action::open_circulation->table( 'action.open_circulation' );
162
163         #---------------------------------------------------------------------
164         package action::survey;
165         
166         action::survey->table( 'action.survey' );
167         action::survey->sequence( 'action.survey_id_seq' );
168         
169         #---------------------------------------------------------------------
170         package action::survey_question;
171         
172         action::survey_question->table( 'action.survey_question' );
173         action::survey_question->sequence( 'action.survey_question_id_seq' );
174         
175         #---------------------------------------------------------------------
176         package action::survey_answer;
177         
178         action::survey_answer->table( 'action.survey_answer' );
179         action::survey_answer->sequence( 'action.survey_answer_id_seq' );
180         
181         #---------------------------------------------------------------------
182         package action::survey_response;
183         
184         action::survey_response->table( 'action.survey_response' );
185         action::survey_response->sequence( 'action.survey_response_id_seq' );
186         
187         #---------------------------------------------------------------------
188         package config::non_cataloged_type;
189         
190         config::non_cataloged_type->table( 'config.non_cataloged_type' );
191         config::non_cataloged_type->sequence( 'config.non_cataloged_type_id_seq' );
192
193         #---------------------------------------------------------------------
194         package config::copy_status;
195         
196         config::copy_status->table( 'config.copy_status' );
197         config::copy_status->sequence( 'config.copy_status_id_seq' );
198
199         #---------------------------------------------------------------------
200         package config::rules::circ_duration;
201         
202         config::rules::circ_duration->table( 'config.rule_circ_duration' );
203         config::rules::circ_duration->sequence( 'config.rule_circ_duration_id_seq' );
204         
205         #---------------------------------------------------------------------
206         package config::rules::age_hold_protect;
207         
208         config::rules::age_hold_protect->table( 'config.rule_age_hold_protect' );
209         config::rules::age_hold_protect->sequence( 'config.rule_age_hold_protect_id_seq' );
210         
211         #---------------------------------------------------------------------
212         package config::rules::max_fine;
213         
214         config::rules::max_fine->table( 'config.rule_max_fine' );
215         config::rules::max_fine->sequence( 'config.rule_max_fine_id_seq' );
216         
217         #---------------------------------------------------------------------
218         package config::rules::recuring_fine;
219         
220         config::rules::recuring_fine->table( 'config.rule_recuring_fine' );
221         config::rules::recuring_fine->sequence( 'config.rule_recuring_fine_id_seq' );
222         
223         #---------------------------------------------------------------------
224         package config::net_access_level;
225         
226         config::net_access_level->table( 'config.net_access_level' );
227         config::net_access_level->sequence( 'config.net_access_level_id_seq' );
228         
229         #---------------------------------------------------------------------
230         package config::standing;
231         
232         config::standing->table( 'config.standing' );
233         config::standing->sequence( 'config.standing_id_seq' );
234         
235         #---------------------------------------------------------------------
236         package config::metabib_field;
237         
238         config::metabib_field->table( 'config.metabib_field' );
239         config::metabib_field->sequence( 'config.metabib_field_id_seq' );
240         
241         #---------------------------------------------------------------------
242         package config::bib_source;
243         
244         config::bib_source->table( 'config.bib_source' );
245         config::bib_source->sequence( 'config.bib_source_id_seq' );
246         
247         #---------------------------------------------------------------------
248         package config::identification_type;
249         
250         config::identification_type->table( 'config.identification_type' );
251         config::identification_type->sequence( 'config.identification_type_id_seq' );
252         
253         #---------------------------------------------------------------------
254         package asset::call_number_note;
255         
256         asset::call_number_note->table( 'asset.call_number_note' );
257         asset::call_number_note->sequence( 'asset.call_number_note_id_seq' );
258         
259         #---------------------------------------------------------------------
260         package asset::copy_note;
261         
262         asset::copy_note->table( 'asset.copy_note' );
263         asset::copy_note->sequence( 'asset.copy_note_id_seq' );
264
265         #---------------------------------------------------------------------
266         package asset::call_number;
267         
268         asset::call_number->table( 'asset.call_number' );
269         asset::call_number->sequence( 'asset.call_number_id_seq' );
270         
271         #---------------------------------------------------------------------
272         package asset::copy_location;
273         
274         asset::copy_location->table( 'asset.copy_location' );
275         asset::copy_location->sequence( 'asset.copy_location_id_seq' );
276
277         #---------------------------------------------------------------------
278         package asset::copy;
279         
280         asset::copy->table( 'asset.copy' );
281         asset::copy->sequence( 'asset.copy_id_seq' );
282
283         #---------------------------------------------------------------------
284         package asset::stat_cat;
285         
286         asset::stat_cat->table( 'asset.stat_cat' );
287         asset::stat_cat->sequence( 'asset.stat_cat_id_seq' );
288         
289         #---------------------------------------------------------------------
290         package asset::stat_cat_entry;
291         
292         asset::stat_cat_entry->table( 'asset.stat_cat_entry' );
293         asset::stat_cat_entry->sequence( 'asset.stat_cat_entry_id_seq' );
294         
295         #---------------------------------------------------------------------
296         package asset::stat_cat_entry_copy_map;
297         
298         asset::stat_cat_entry_copy_map->table( 'asset.stat_cat_entry_copy_map' );
299         asset::stat_cat_entry_copy_map->sequence( 'asset.stat_cat_entry_copy_map_id_seq' );
300         
301         #---------------------------------------------------------------------
302         package authority::record_entry;
303         
304         authority::record_entry->table( 'authority.record_entry' );
305         authority::record_entry->sequence( 'authority.record_entry_id_seq' );
306
307         #---------------------------------------------------------------------
308         package biblio::record_entry;
309         
310         biblio::record_entry->table( 'biblio.record_entry' );
311         biblio::record_entry->sequence( 'biblio.record_entry_id_seq' );
312
313         #---------------------------------------------------------------------
314         #package biblio::record_marc;
315         #
316         #biblio::record_marc->table( 'biblio.record_marc' );
317         #biblio::record_marc->sequence( 'biblio.record_marc_id_seq' );
318         #
319         #---------------------------------------------------------------------
320         package authority::record_note;
321         
322         authority::record_note->table( 'authority.record_note' );
323         authority::record_note->sequence( 'authority.record_note_id_seq' );
324
325         #---------------------------------------------------------------------
326         package biblio::record_note;
327         
328         biblio::record_note->table( 'biblio.record_note' );
329         biblio::record_note->sequence( 'biblio.record_note_id_seq' );
330         
331         #---------------------------------------------------------------------
332         package actor::workstation;
333         
334         actor::workstation->table( 'actor.workstation' );
335         actor::workstation->sequence( 'actor.workstation_id_seq' );
336
337         #---------------------------------------------------------------------
338         package actor::user;
339         
340         actor::user->table( 'actor.usr' );
341         actor::user->sequence( 'actor.usr_id_seq' );
342
343         #---------------------------------------------------------------------
344         package actor::org_unit_setting;
345         
346         actor::org_unit_setting->table( 'actor.org_unit_setting' );
347         actor::org_unit_setting->sequence( 'actor.org_unit_setting_id_seq' );
348
349         #---------------------------------------------------------------------
350         package actor::user_standing_penalty;
351         
352         actor::user_standing_penalty->table( 'actor.usr_standing_penalty' );
353         actor::user_standing_penalty->sequence( 'actor.usr_standing_penalty_id_seq' );
354
355         #---------------------------------------------------------------------
356         package actor::user_setting;
357         
358         actor::user_setting->table( 'actor.usr_setting' );
359         actor::user_setting->sequence( 'actor.usr_setting_id_seq' );
360
361         #---------------------------------------------------------------------
362         package actor::user_address;
363         
364         actor::user_address->table( 'actor.usr_address' );
365         actor::user_address->sequence( 'actor.usr_address_id_seq' );
366
367         #---------------------------------------------------------------------
368         package actor::org_address;
369         
370         actor::org_address->table( 'actor.org_address' );
371         actor::org_address->sequence( 'actor.org_address_id_seq' );
372         
373         #---------------------------------------------------------------------
374         package actor::profile;
375         
376         actor::profile->table( 'actor.profile' );
377         actor::profile->sequence( 'actor.profile_id_seq' );
378         
379         #---------------------------------------------------------------------
380         package actor::org_unit_type;
381         
382         actor::org_unit_type->table( 'actor.org_unit_type' );
383         actor::org_unit_type->sequence( 'actor.org_unit_type_id_seq' );
384
385         #---------------------------------------------------------------------
386         package actor::org_unit;
387         
388         actor::org_unit->table( 'actor.org_unit' );
389         actor::org_unit->sequence( 'actor.org_unit_id_seq' );
390
391         #---------------------------------------------------------------------
392         package actor::stat_cat;
393         
394         actor::stat_cat->table( 'actor.stat_cat' );
395         actor::stat_cat->sequence( 'actor.stat_cat_id_seq' );
396         
397         #---------------------------------------------------------------------
398         package actor::stat_cat_entry;
399         
400         actor::stat_cat_entry->table( 'actor.stat_cat_entry' );
401         actor::stat_cat_entry->sequence( 'actor.stat_cat_entry_id_seq' );
402         
403         #---------------------------------------------------------------------
404         package actor::stat_cat_entry_user_map;
405         
406         actor::stat_cat_entry_user_map->table( 'actor.stat_cat_entry_usr_map' );
407         actor::stat_cat_entry_user_map->sequence( 'actor.stat_cat_entry_usr_map_id_seq' );
408         
409         #---------------------------------------------------------------------
410         package actor::card;
411         
412         actor::card->table( 'actor.card' );
413         actor::card->sequence( 'actor.card_id_seq' );
414
415         #---------------------------------------------------------------------
416         package actor::usr_note;
417         
418         actor::usr_note->table( 'actor.usr_note' );
419         actor::usr_note->sequence( 'actor.usr_note_id_seq' );
420
421         #---------------------------------------------------------------------
422
423         #-------------------------------------------------------------------------------
424         package metabib::metarecord;
425
426         metabib::metarecord->table( 'metabib.metarecord' );
427         metabib::metarecord->sequence( 'metabib.metarecord_id_seq' );
428
429         OpenILS::Application::Storage->register_method(
430                 api_name        => 'open-ils.storage.direct.metabib.metarecord.batch.create',
431                 method          => 'copy_create',
432                 api_level       => 1,
433                 'package'       => 'OpenILS::Application::Storage',
434                 cdbi            => 'metabib::metarecord',
435         );
436
437
438         #-------------------------------------------------------------------------------
439
440         #-------------------------------------------------------------------------------
441         package metabib::title_field_entry;
442
443         metabib::title_field_entry->table( 'metabib.title_field_entry' );
444         metabib::title_field_entry->sequence( 'metabib.title_field_entry_id_seq' );
445         metabib::title_field_entry->columns( 'FTS' => 'index_vector' );
446
447 #       metabib::title_field_entry->add_trigger(
448 #               before_create => \&OpenILS::Application::Storage::Driver::Pg::tsearch2_trigger
449 #       );
450 #       metabib::title_field_entry->add_trigger(
451 #               before_update => \&OpenILS::Application::Storage::Driver::Pg::tsearch2_trigger
452 #       );
453
454         OpenILS::Application::Storage->register_method(
455                 api_name        => 'open-ils.storage.direct.metabib.title_field_entry.batch.create',
456                 method          => 'copy_create',
457                 api_level       => 1,
458                 'package'       => 'OpenILS::Application::Storage',
459                 cdbi            => 'metabib::title_field_entry',
460         );
461
462         #-------------------------------------------------------------------------------
463
464         #-------------------------------------------------------------------------------
465         package metabib::author_field_entry;
466
467         metabib::author_field_entry->table( 'metabib.author_field_entry' );
468         metabib::author_field_entry->sequence( 'metabib.author_field_entry_id_seq' );
469         metabib::author_field_entry->columns( 'FTS' => 'index_vector' );
470
471         OpenILS::Application::Storage->register_method(
472                 api_name        => 'open-ils.storage.direct.metabib.author_field_entry.batch.create',
473                 method          => 'copy_create',
474                 api_level       => 1,
475                 'package'       => 'OpenILS::Application::Storage',
476                 cdbi            => 'metabib::author_field_entry',
477         );
478
479         #-------------------------------------------------------------------------------
480
481         #-------------------------------------------------------------------------------
482         package metabib::subject_field_entry;
483
484         metabib::subject_field_entry->table( 'metabib.subject_field_entry' );
485         metabib::subject_field_entry->sequence( 'metabib.subject_field_entry_id_seq' );
486         metabib::subject_field_entry->columns( 'FTS' => 'index_vector' );
487
488         OpenILS::Application::Storage->register_method(
489                 api_name        => 'open-ils.storage.direct.metabib.subject_field_entry.batch.create',
490                 method          => 'copy_create',
491                 api_level       => 1,
492                 'package'       => 'OpenILS::Application::Storage',
493                 cdbi            => 'metabib::subject_field_entry',
494         );
495
496         #-------------------------------------------------------------------------------
497
498         #-------------------------------------------------------------------------------
499         package metabib::keyword_field_entry;
500
501         metabib::keyword_field_entry->table( 'metabib.keyword_field_entry' );
502         metabib::keyword_field_entry->sequence( 'metabib.keyword_field_entry_id_seq' );
503         metabib::keyword_field_entry->columns( 'FTS' => 'index_vector' );
504
505         OpenILS::Application::Storage->register_method(
506                 api_name        => 'open-ils.storage.direct.metabib.keyword_field_entry.batch.create',
507                 method          => 'copy_create',
508                 api_level       => 1,
509                 'package'       => 'OpenILS::Application::Storage',
510                 cdbi            => 'metabib::keyword_field_entry',
511         );
512
513         #-------------------------------------------------------------------------------
514         package metabib::series_field_entry;
515
516         metabib::series_field_entry->table( 'metabib.series_field_entry' );
517         metabib::series_field_entry->sequence( 'metabib.series_field_entry_id_seq' );
518         metabib::series_field_entry->columns( 'FTS' => 'index_vector' );
519
520         OpenILS::Application::Storage->register_method(
521                 api_name        => 'open-ils.storage.direct.metabib.series_field_entry.batch.create',
522                 method          => 'copy_create',
523                 api_level       => 1,
524                 'package'       => 'OpenILS::Application::Storage',
525                 cdbi            => 'metabib::series_field_entry',
526         );
527
528         #-------------------------------------------------------------------------------
529
530         #-------------------------------------------------------------------------------
531         #package metabib::title_field_entry_source_map;
532
533         #metabib::title_field_entry_source_map->table( 'metabib.title_field_entry_source_map' );
534
535         #-------------------------------------------------------------------------------
536
537         #-------------------------------------------------------------------------------
538         #package metabib::author_field_entry_source_map;
539
540         #metabib::author_field_entry_source_map->table( 'metabib.author_field_entry_source_map' );
541
542         #-------------------------------------------------------------------------------
543
544         #-------------------------------------------------------------------------------
545         #package metabib::subject_field_entry_source_map;
546
547         #metabib::subject_field_entry_source_map->table( 'metabib.subject_field_entry_source_map' );
548
549         #-------------------------------------------------------------------------------
550
551         #-------------------------------------------------------------------------------
552         #package metabib::keyword_field_entry_source_map;
553
554         #metabib::keyword_field_entry_source_map->table( 'metabib.keyword_field_entry_source_map' );
555
556         #-------------------------------------------------------------------------------
557
558         #-------------------------------------------------------------------------------
559         package metabib::metarecord_source_map;
560
561         metabib::metarecord_source_map->table( 'metabib.metarecord_source_map' );
562         OpenILS::Application::Storage->register_method(
563                 api_name        => 'open-ils.storage.direct.metabib.metarecord_source_map.batch.create',
564                 method          => 'copy_create',
565                 api_level       => 1,
566                 'package'       => 'OpenILS::Application::Storage',
567                 cdbi            => 'metabib::metarecord_source_map',
568         );
569
570
571         #-------------------------------------------------------------------------------
572         package authority::record_descriptor;
573
574         authority::record_descriptor->table( 'authority.rec_descriptor' );
575         authority::record_descriptor->sequence( 'authority.rec_descriptor_id_seq' );
576
577         OpenILS::Application::Storage->register_method(
578                 api_name        => 'open-ils.storage.direct.authority.record_descriptor.batch.create',
579                 method          => 'copy_create',
580                 api_level       => 1,
581                 'package'       => 'OpenILS::Application::Storage',
582                 cdbi            => 'authority::record_descriptor',
583         );
584
585         #-------------------------------------------------------------------------------
586         package metabib::record_descriptor;
587
588         metabib::record_descriptor->table( 'metabib.rec_descriptor' );
589         metabib::record_descriptor->sequence( 'metabib.rec_descriptor_id_seq' );
590
591         OpenILS::Application::Storage->register_method(
592                 api_name        => 'open-ils.storage.direct.metabib.record_descriptor.batch.create',
593                 method          => 'copy_create',
594                 api_level       => 1,
595                 'package'       => 'OpenILS::Application::Storage',
596                 cdbi            => 'metabib::record_descriptor',
597         );
598
599         #-------------------------------------------------------------------------------
600
601
602         #-------------------------------------------------------------------------------
603         package authority::full_rec;
604
605         authority::full_rec->table( 'authority.full_rec' );
606         authority::full_rec->sequence( 'authority.full_rec_id_seq' );
607         authority::full_rec->columns( 'FTS' => 'index_vector' );
608
609         OpenILS::Application::Storage->register_method(
610                 api_name        => 'open-ils.storage.direct.authority.full_rec.batch.create',
611                 method          => 'copy_create',
612                 api_level       => 1,
613                 'package'       => 'OpenILS::Application::Storage',
614                 cdbi            => 'authority::full_rec',
615         );
616
617
618         #-------------------------------------------------------------------------------
619         package metabib::full_rec;
620
621         metabib::full_rec->table( 'metabib.full_rec' );
622         metabib::full_rec->sequence( 'metabib.full_rec_id_seq' );
623         metabib::full_rec->columns( 'FTS' => 'index_vector' );
624
625         OpenILS::Application::Storage->register_method(
626                 api_name        => 'open-ils.storage.direct.metabib.full_rec.batch.create',
627                 method          => 'copy_create',
628                 api_level       => 1,
629                 'package'       => 'OpenILS::Application::Storage',
630                 cdbi            => 'metabib::full_rec',
631         );
632
633
634         #-------------------------------------------------------------------------------
635
636         package permission::perm_list;
637
638         permission::perm_list->sequence( 'permission.perm_list_id_seq' );
639         permission::perm_list->table('permission.perm_list');
640
641         #-------------------------------------------------------------------------------
642
643         package permission::grp_tree;
644
645         permission::grp_tree->sequence( 'permission.grp_tree_id_seq' );
646         permission::grp_tree->table('permission.grp_tree');
647
648         #-------------------------------------------------------------------------------
649
650         package permission::usr_grp_map;
651
652         permission::usr_grp_map->sequence( 'permission.usr_grp_map_id_seq' );
653         permission::usr_grp_map->table('permission.usr_grp_map');
654
655         #-------------------------------------------------------------------------------
656
657         package permission::usr_perm_map;
658
659         permission::usr_perm_map->sequence( 'permission.usr_perm_map_id_seq' );
660         permission::usr_perm_map->table('permission.usr_perm_map');
661
662         #-------------------------------------------------------------------------------
663
664         package permission::grp_perm_map;
665
666         permission::grp_perm_map->sequence( 'permission.grp_perm_map_id_seq' );
667         permission::grp_perm_map->table('permission.grp_perm_map');
668
669         #-------------------------------------------------------------------------------
670
671         package action::hold_request;
672
673         action::hold_request->sequence( 'action.hold_request_id_seq' );
674         action::hold_request->table('action.hold_request');
675
676         #-------------------------------------------------------------------------------
677
678         package action::hold_notification;
679
680         action::hold_notification->sequence( 'action.hold_notification_id_seq' );
681         action::hold_notification->table('action.hold_notification');
682
683         #-------------------------------------------------------------------------------
684
685         package action::hold_copy_map;
686
687         action::hold_copy_map->sequence( 'action.hold_copy_map_id_seq' );
688         action::hold_copy_map->table('action.hold_copy_map');
689
690         #-------------------------------------------------------------------------------
691
692         package action::hold_transit_copy;
693
694         action::hold_transit_copy->sequence( 'action.transit_copy_id_seq' );
695         action::hold_transit_copy->table('action.hold_transit_copy');
696
697         #-------------------------------------------------------------------------------
698
699         package action::transit_copy;
700
701         action::transit_copy->sequence( 'action.transit_copy_id_seq' );
702         action::transit_copy->table('action.transit_copy');
703
704         #-------------------------------------------------------------------------------
705
706         package action::unfulfilled_hold_list;
707
708         action::unfulfilled_hold_list->sequence( 'action.unfulfilled_hold_list_id_seq' );
709         action::unfulfilled_hold_list->table('action.unfulfilled_hold_list');
710
711         #-------------------------------------------------------------------------------
712
713         package config::language_map;
714         config::language_map->table('config.language_map');
715
716         #-------------------------------------------------------------------------------
717
718         package config::item_form_map;
719         config::item_form_map->table('config.item_form_map');
720
721         #-------------------------------------------------------------------------------
722
723         package config::lit_form_map;
724         config::lit_form_map->table('config.lit_form_map');
725
726         #-------------------------------------------------------------------------------
727
728         package config::item_type_map;
729         config::item_type_map->table('config.item_type_map');
730
731         #-------------------------------------------------------------------------------
732         package config::audience_map;
733         config::audience_map->table('config.audience_map');
734
735         #-------------------------------------------------------------------------------
736
737
738 }
739
740 1;