From: Sven Schöling Date: Wed, 8 Feb 2012 17:05:28 +0000 (+0100) Subject: rdbo: allow_inline_columns für 4 tabellen X-Git-Tag: release-2.7.0beta1~3 X-Git-Url: http://wagnertech.de/git?a=commitdiff_plain;h=60c5177dec0a6bf86e6b3da763b251233e40ce4d;p=kivitendo-erp.git rdbo: allow_inline_columns für 4 tabellen --- diff --git a/SL/DB/MetaSetup/Assembly.pm b/SL/DB/MetaSetup/Assembly.pm index 038795183..801662db6 100644 --- a/SL/DB/MetaSetup/Assembly.pm +++ b/SL/DB/MetaSetup/Assembly.pm @@ -20,6 +20,8 @@ __PACKAGE__->meta->setup( ], primary_key_columns => [ 'assembly_id' ], + + allow_inline_column_values => 1, ); 1; diff --git a/SL/DB/MetaSetup/Customer.pm b/SL/DB/MetaSetup/Customer.pm index 1279c4e9c..8735268c0 100644 --- a/SL/DB/MetaSetup/Customer.pm +++ b/SL/DB/MetaSetup/Customer.pm @@ -58,6 +58,8 @@ __PACKAGE__->meta->setup( primary_key_columns => [ 'id' ], + allow_inline_column_values => 1, + foreign_keys => [ business => { class => 'SL::DB::Business', diff --git a/SL/DB/MetaSetup/Department.pm b/SL/DB/MetaSetup/Department.pm index 93aa92cdc..921601460 100644 --- a/SL/DB/MetaSetup/Department.pm +++ b/SL/DB/MetaSetup/Department.pm @@ -17,6 +17,8 @@ __PACKAGE__->meta->setup( ], primary_key_columns => [ 'id' ], + + allow_inline_column_values => 1, ); 1; diff --git a/SL/DB/MetaSetup/Vendor.pm b/SL/DB/MetaSetup/Vendor.pm index e32563f3b..6511ea286 100644 --- a/SL/DB/MetaSetup/Vendor.pm +++ b/SL/DB/MetaSetup/Vendor.pm @@ -58,6 +58,8 @@ __PACKAGE__->meta->setup( primary_key_columns => [ 'id' ], + allow_inline_column_values => 1, + foreign_keys => [ business => { class => 'SL::DB::Business',