Volltext-Suche: Rose-Beziehung von File zu full_text
[kivitendo-erp.git] / SL / DB / File.pm
1 # This file has been auto-generated only because it didn't exist.
2 # Feel free to modify it at will; it will not be overwritten automatically.
3
4 package SL::DB::File;
5
6 use strict;
7
8 use SL::DB::MetaSetup::File;
9 use SL::DB::Manager::File;
10
11 __PACKAGE__->meta->add_relationship(
12   full_text            => {
13     type               => 'one to one',
14     class              => 'SL::DB::FileFullText',
15     column_map         => { id => 'file_id' },
16   },
17 );
18
19 __PACKAGE__->meta->initialize;
20
21
22 1;
23 __END__
24
25 =pod
26
27 =encoding utf8
28
29 =head1 NAME
30
31 SL::DB::File - Databaseclass for File
32
33 =head1 SYNOPSIS
34
35 use SL::DB::File;
36
37 # synopsis...
38
39 =head1 DESCRIPTION
40
41 # longer description.
42
43 =head1 INTERFACE
44
45 =head1 DEPENDENCIES
46
47 =head1 SEE ALSO
48
49 =head1 AUTHOR
50
51 Werner Hahn E<lt>wh@futureworldsearch.netE<gt>
52
53 =cut