Revision 4fd22b56
Von Sven Schöling vor etwa 14 Jahren hinzugefügt
SL/DB/MetaSetup/Order.pm | ||
---|---|---|
55 | 55 |
allow_inline_column_values => 1, |
56 | 56 |
|
57 | 57 |
foreign_keys => [ |
58 |
employee => { |
|
59 |
class => 'SL::DB::Employee', |
|
60 |
key_columns => { employee_id => 'id' }, |
|
61 |
}, |
|
62 |
|
|
58 | 63 |
globalproject => { |
59 | 64 |
class => 'SL::DB::Project', |
60 | 65 |
key_columns => { globalproject_id => 'id' }, |
61 | 66 |
}, |
67 |
|
|
68 |
project_manager => { |
|
69 |
class => 'SL::DB::Employee', |
|
70 |
key_columns => { project_manager_id => 'id' }, |
|
71 |
}, |
|
72 |
|
|
73 |
salesman => { |
|
74 |
class => 'SL::DB::Employee', |
|
75 |
key_columns => { salesman_id => 'id' }, |
|
76 |
}, |
|
62 | 77 |
], |
63 | 78 |
); |
64 | 79 |
|
Auch abrufbar als: Unified diff
DBO Update - alle normalen Models hinzugefügt.