rdbo: allow_inline_columns für 4 tabellen
authorSven Schöling <s.schoeling@linet-services.de>
Wed, 8 Feb 2012 17:05:28 +0000 (18:05 +0100)
committerSven Schöling <s.schoeling@linet-services.de>
Wed, 8 Feb 2012 17:05:28 +0000 (18:05 +0100)
SL/DB/MetaSetup/Assembly.pm
SL/DB/MetaSetup/Customer.pm
SL/DB/MetaSetup/Department.pm
SL/DB/MetaSetup/Vendor.pm

index 0387951..801662d 100644 (file)
@@ -20,6 +20,8 @@ __PACKAGE__->meta->setup(
   ],
 
   primary_key_columns => [ 'assembly_id' ],
+
+  allow_inline_column_values => 1,
 );
 
 1;
index 1279c4e..8735268 100644 (file)
@@ -58,6 +58,8 @@ __PACKAGE__->meta->setup(
 
   primary_key_columns => [ 'id' ],
 
+  allow_inline_column_values => 1,
+
   foreign_keys => [
     business => {
       class       => 'SL::DB::Business',
index 93aa92c..9216014 100644 (file)
@@ -17,6 +17,8 @@ __PACKAGE__->meta->setup(
   ],
 
   primary_key_columns => [ 'id' ],
+
+  allow_inline_column_values => 1,
 );
 
 1;
index e32563f..6511ea2 100644 (file)
@@ -58,6 +58,8 @@ __PACKAGE__->meta->setup(
 
   primary_key_columns => [ 'id' ],
 
+  allow_inline_column_values => 1,
+
   foreign_keys => [
     business => {
       class       => 'SL::DB::Business',