MetaSetup: Folgerun um die Foreign Keys umzudrehen
[kivitendo-erp.git] / SL / DB / MetaSetup / PaymentTerm.pm
index 3eda536..83bd6d2 100644 (file)
@@ -25,38 +25,6 @@ __PACKAGE__->meta->primary_key_columns([ 'id' ]);
 
 __PACKAGE__->meta->allow_inline_column_values(1);
 
-__PACKAGE__->meta->relationships(
-  ap => {
-    class      => 'SL::DB::PurchaseInvoice',
-    column_map => { id => 'payment_id' },
-    type       => 'one to many',
-  },
-
-  ar => {
-    class      => 'SL::DB::Invoice',
-    column_map => { id => 'payment_id' },
-    type       => 'one to many',
-  },
-
-  customer => {
-    class      => 'SL::DB::Customer',
-    column_map => { id => 'payment_id' },
-    type       => 'one to many',
-  },
-
-  oe => {
-    class      => 'SL::DB::Order',
-    column_map => { id => 'payment_id' },
-    type       => 'one to many',
-  },
-
-  parts => {
-    class      => 'SL::DB::Part',
-    column_map => { id => 'payment_id' },
-    type       => 'one to many',
-  },
-);
-
 # __PACKAGE__->meta->initialize;
 
 1;