Revision 4fd22b56
Von Sven Schöling vor etwa 14 Jahren hinzugefügt
SL/DB/MetaSetup/DeliveryOrder.pm | ||
---|---|---|
48 | 48 |
allow_inline_column_values => 1, |
49 | 49 |
|
50 | 50 |
foreign_keys => [ |
51 |
contact => { |
|
52 |
class => 'SL::DB::Contact', |
|
53 |
key_columns => { cp_id => 'cp_id' }, |
|
54 |
}, |
|
55 |
|
|
51 | 56 |
customer => { |
52 | 57 |
class => 'SL::DB::Customer', |
53 | 58 |
key_columns => { customer_id => 'id' }, |
54 | 59 |
}, |
55 | 60 |
|
61 |
employee => { |
|
62 |
class => 'SL::DB::Employee', |
|
63 |
key_columns => { employee_id => 'id' }, |
|
64 |
}, |
|
65 |
|
|
56 | 66 |
globalproject => { |
57 | 67 |
class => 'SL::DB::Project', |
58 | 68 |
key_columns => { globalproject_id => 'id' }, |
59 | 69 |
}, |
60 | 70 |
|
71 |
language => { |
|
72 |
class => 'SL::DB::Language', |
|
73 |
key_columns => { language_id => 'id' }, |
|
74 |
}, |
|
75 |
|
|
76 |
salesman => { |
|
77 |
class => 'SL::DB::Employee', |
|
78 |
key_columns => { salesman_id => 'id' }, |
|
79 |
}, |
|
80 |
|
|
61 | 81 |
vendor => { |
62 | 82 |
class => 'SL::DB::Vendor', |
63 | 83 |
key_columns => { vendor_id => 'id' }, |
Auch abrufbar als: Unified diff
DBO Update - alle normalen Models hinzugefügt.