X-Git-Url: http://wagnertech.de/gitweb/gitweb.cgi/mfinanz.git/blobdiff_plain/53db54a80c97c95321d567bfc6f73ae47d7d6a4d..63cb5b41d9b06d0b7f522ef154dd9f57ea428bae:/SL/DB/MetaSetup/Default.pm diff --git a/SL/DB/MetaSetup/Default.pm b/SL/DB/MetaSetup/Default.pm index 9ad110939..73b75fe1b 100644 --- a/SL/DB/MetaSetup/Default.pm +++ b/SL/DB/MetaSetup/Default.pm @@ -10,7 +10,11 @@ __PACKAGE__->meta->table('defaults'); __PACKAGE__->meta->columns( accounting_method => { type => 'text' }, - address => { type => 'text' }, + address_city => { type => 'text' }, + address_country => { type => 'text' }, + address_street1 => { type => 'text' }, + address_street2 => { type => 'text' }, + address_zipcode => { type => 'text' }, allow_new_purchase_delivery_order => { type => 'boolean', default => 'true', not_null => 1 }, allow_new_purchase_invoice => { type => 'boolean', default => 'true', not_null => 1 }, allow_sales_invoice_from_sales_order => { type => 'boolean', default => 'true', not_null => 1 },