-__PACKAGE__->meta->relationships(
-  ap => {
-    class      => 'SL::DB::PurchaseInvoice',
-    column_map => { id => 'language_id' },
-    type       => 'one to many',
-  },
-
-  ar => {
-    class      => 'SL::DB::Invoice',
-    column_map => { id => 'language_id' },
-    type       => 'one to many',
-  },
-
-  customer => {
-    class      => 'SL::DB::Customer',
-    column_map => { id => 'language_id' },
-    type       => 'one to many',
-  },
-
-  generic_translations => {
-    class      => 'SL::DB::GenericTranslation',
-    column_map => { id => 'language_id' },
-    type       => 'one to many',
-  },
-);
-
-# __PACKAGE__->meta->initialize;
-