kivitendo/SL/DB/EmailJournal.pm @ 184f472c
24ab7ec0 | Moritz Bunkus | package SL::DB::EmailJournal;
|
||
use strict;
|
||||
use SL::DB::MetaSetup::EmailJournal;
|
||||
use SL::DB::Manager::EmailJournal;
|
||||
72f19f83 | Moritz Bunkus | use SL::DB::Helper::AttrSorted;
|
||
24ab7ec0 | Moritz Bunkus | |||
__PACKAGE__->meta->add_relationship(
|
||||
attachments => {
|
||||
type => 'one to many',
|
||||
class => 'SL::DB::EmailJournalAttachment',
|
||||
column_map => { id => 'email_journal_id' },
|
||||
},
|
||||
);
|
||||
__PACKAGE__->meta->initialize;
|
||||
72f19f83 | Moritz Bunkus | __PACKAGE__->attr_sorted('attachments');
|
||
24ab7ec0 | Moritz Bunkus | 1;
|