kivitendo/SL/DB/FollowUp.pm @ 15f58ff3
4fd22b56 | Sven Schöling | # This file has been auto-generated only because it didn't exist.
|
||
# Feel free to modify it at will; it will not be overwritten automatically.
|
||||
package SL::DB::FollowUp;
|
||||
use strict;
|
||||
use SL::DB::MetaSetup::FollowUp;
|
||||
c0cd58d9 | Thomas Heck | __PACKAGE__->meta->add_relationships(
|
||
follow_up_link => {
|
||||
type => 'one to one',
|
||||
class => 'SL::DB::FollowUpLink',
|
||||
column_map => { id => 'follow_up_id' },
|
||||
},
|
||||
);
|
||||
2d7e4203 | Sven Schöling | __PACKAGE__->meta->initialize;
|
||
4fd22b56 | Sven Schöling | # Creates get_all, get_all_count, get_all_iterator, delete_all and update_all.
|
||
__PACKAGE__->meta->make_manager_class;
|
||||
1;
|