kivitendo/SL/DB/EmailImport.pm @ f1fc6f27
786bfd7a | Tamino Steinert | package SL::DB::EmailImport;
|
||
use strict;
|
||||
use SL::DB::MetaSetup::EmailImport;
|
||||
use SL::DB::Manager::EmailImport;
|
||||
__PACKAGE__->meta->add_relationship(
|
||||
d7a089e8 | Tamino Steinert | email_journals => {
|
||
786bfd7a | Tamino Steinert | type => 'one to many',
|
||
class => 'SL::DB::EmailJournal',
|
||||
column_map => { id => 'email_import_id' },
|
||||
},
|
||||
);
|
||||
__PACKAGE__->meta->initialize;
|
||||
1;
|