Projekt

Allgemein

Profil

Herunterladen (823 Bytes) Statistiken
| Zweig: | Markierung: | Revision:
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' },
},
8ce18fa4 Bernd Bleßmann
created_for_employees => {
type => 'many to many',
map_class => 'SL::DB::FollowUpCreatedForEmployee',
},
2e2ad8bf Bernd Bleßmann
done => {
type => 'one to one',
class => 'SL::DB::FollowUpDone',
column_map => { id => 'follow_up_id' },
},
c0cd58d9 Thomas Heck
);

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;