From 60c5177dec0a6bf86e6b3da763b251233e40ce4d Mon Sep 17 00:00:00 2001 From: =?utf8?q?Sven=20Sch=C3=B6ling?= Date: Wed, 8 Feb 2012 18:05:28 +0100 Subject: [PATCH] =?utf8?q?rdbo:=20allow=5Finline=5Fcolumns=20f=C3=BCr=204?= =?utf8?q?=20tabellen?= MIME-Version: 1.0 Content-Type: text/plain; charset=utf8 Content-Transfer-Encoding: 8bit --- SL/DB/MetaSetup/Assembly.pm | 2 ++ SL/DB/MetaSetup/Customer.pm | 2 ++ SL/DB/MetaSetup/Department.pm | 2 ++ SL/DB/MetaSetup/Vendor.pm | 2 ++ 4 files changed, 8 insertions(+) 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', -- 2.20.1