]> wagnertech.de Git - mfinanz.git/blob - SL/DB/EmailImport.pm
restart apache2 in postinst
[mfinanz.git] / SL / DB / EmailImport.pm
1 package SL::DB::EmailImport;
2
3 use strict;
4
5 use SL::DB::MetaSetup::EmailImport;
6 use SL::DB::Manager::EmailImport;
7
8 __PACKAGE__->meta->add_relationship(
9   email_journals => {
10     type      => 'one to many',
11     class     => 'SL::DB::EmailJournal',
12     column_map => { id => 'email_import_id' },
13   },
14 );
15
16 __PACKAGE__->meta->initialize;
17
18 1;