6875b524995f63e39c7dbb5658503a0b2dbb1639
[kivitendo-erp.git] / SL / DB / EmailJournal.pm
1 package SL::DB::EmailJournal;
2
3 use strict;
4
5 use SL::DB::MetaSetup::EmailJournal;
6 use SL::DB::Manager::EmailJournal;
7
8 __PACKAGE__->meta->add_relationship(
9   attachments  => {
10     type       => 'one to many',
11     class      => 'SL::DB::EmailJournalAttachment',
12     column_map => { id => 'email_journal_id' },
13   },
14 );
15
16 __PACKAGE__->meta->initialize;
17
18 1;