SEPA: speichern, in welchen Nachrichten-IDs (MsgId) Exporte verwendet wurden
[kivitendo-erp.git] / SL / DB / SepaExport.pm
1 package SL::DB::SepaExport;
2
3 use strict;
4
5 use SL::DB::MetaSetup::SepaExport;
6
7 __PACKAGE__->meta->add_relationship(
8   message_ids  => {
9     type       => 'one to many',
10     class      => 'SL::DB::SepaExportMessageId',
11     column_map => { id => 'sepa_export_id' },
12   },
13 );
14
15 __PACKAGE__->meta->initialize;
16
17 __PACKAGE__->meta->make_manager_class;
18
19 1;