Revision 69fe0ae7
Von Tamino Steinert vor mehr als 2 Jahren hinzugefügt
SL/DB/MetaSetup/Reclamation.pm | ||
---|---|---|
|
||
__PACKAGE__->meta->columns(
|
||
amount => { type => 'numeric', precision => 15, scale => 5 },
|
||
billing_address_id => { type => 'integer' },
|
||
closed => { type => 'boolean', default => 'false', not_null => 1 },
|
||
contact_id => { type => 'integer' },
|
||
currency_id => { type => 'integer', not_null => 1 },
|
||
... | ... | |
__PACKAGE__->meta->allow_inline_column_values(1);
|
||
|
||
__PACKAGE__->meta->foreign_keys(
|
||
billing_address => {
|
||
class => 'SL::DB::AdditionalBillingAddress',
|
||
key_columns => { billing_address_id => 'id' },
|
||
},
|
||
|
||
contact => {
|
||
class => 'SL::DB::Contact',
|
||
key_columns => { contact_id => 'cp_id' },
|
Auch abrufbar als: Unified diff
Reclamation: add billing_address_id to reclamation