Revision 4bcf8804
Von Sven Schöling vor mehr als 11 Jahren hinzugefügt
SL/DB/MetaSetup/DeliveryOrder.pm | ||
---|---|---|
61 | 61 |
key_columns => { customer_id => 'id' }, |
62 | 62 |
}, |
63 | 63 |
|
64 |
department => { |
|
65 |
class => 'SL::DB::Department', |
|
66 |
key_columns => { department_id => 'id' }, |
|
67 |
}, |
|
68 |
|
|
69 |
employee => { |
|
70 |
class => 'SL::DB::Employee', |
|
71 |
key_columns => { employee_id => 'id' }, |
|
72 |
}, |
|
73 |
|
|
64 | 74 |
globalproject => { |
65 | 75 |
class => 'SL::DB::Project', |
66 | 76 |
key_columns => { globalproject_id => 'id' }, |
67 | 77 |
}, |
68 | 78 |
|
79 |
language => { |
|
80 |
class => 'SL::DB::Language', |
|
81 |
key_columns => { language_id => 'id' }, |
|
82 |
}, |
|
83 |
|
|
84 |
salesman => { |
|
85 |
class => 'SL::DB::Employee', |
|
86 |
key_columns => { salesman_id => 'id' }, |
|
87 |
}, |
|
88 |
|
|
89 |
shipto => { |
|
90 |
class => 'SL::DB::Shipto', |
|
91 |
key_columns => { shipto_id => 'shipto_id' }, |
|
92 |
}, |
|
93 |
|
|
69 | 94 |
vendor => { |
70 | 95 |
class => 'SL::DB::Vendor', |
71 | 96 |
key_columns => { vendor_id => 'id' }, |
Auch abrufbar als: Unified diff
MetaSetup: Folgerun um die Foreign Keys umzudrehen