kivitendo/SL/DB/SepaExport.pm @ 54cadc0b
4fd22b56 | Sven Schöling | package SL::DB::SepaExport;
|
||
use strict;
|
||||
use SL::DB::MetaSetup::SepaExport;
|
||||
1ac4c07d | Moritz Bunkus | __PACKAGE__->meta->add_relationship(
|
||
message_ids => {
|
||||
type => 'one to many',
|
||||
class => 'SL::DB::SepaExportMessageId',
|
||||
column_map => { id => 'sepa_export_id' },
|
||||
},
|
||||
);
|
||||
2d7e4203 | Sven Schöling | __PACKAGE__->meta->initialize;
|
||
4fd22b56 | Sven Schöling | __PACKAGE__->meta->make_manager_class;
|
||
1;
|