MetaSetup neu generiert
[kivitendo-erp.git] / SL / DB / MetaSetup / TransferType.pm
index 1f018bf..74a3840 100644 (file)
@@ -6,22 +6,30 @@ use strict;
 
 use base qw(SL::DB::Object);
 
-__PACKAGE__->meta->setup(
-  table   => 'transfer_type',
+__PACKAGE__->meta->table('transfer_type');
 
-  columns => [
-    id          => { type => 'integer', not_null => 1, sequence => 'id' },
-    direction   => { type => 'varchar', length => 10, not_null => 1 },
-    description => { type => 'text' },
-    sortkey     => { type => 'integer' },
-    itime       => { type => 'timestamp', default => 'now()' },
-    mtime       => { type => 'timestamp' },
-  ],
+__PACKAGE__->meta->columns(
+  id          => { type => 'integer', not_null => 1, sequence => 'id' },
+  direction   => { type => 'varchar', length => 10, not_null => 1 },
+  description => { type => 'text' },
+  sortkey     => { type => 'integer' },
+  itime       => { type => 'timestamp', default => 'now()' },
+  mtime       => { type => 'timestamp' },
+);
+
+__PACKAGE__->meta->primary_key_columns([ 'id' ]);
 
-  primary_key_columns => [ 'id' ],
+__PACKAGE__->meta->allow_inline_column_values(1);
 
-  allow_inline_column_values => 1,
+__PACKAGE__->meta->relationships(
+  inventory => {
+    class      => 'SL::DB::Inventory',
+    column_map => { id => 'trans_type_id' },
+    type       => 'one to many',
+  },
 );
 
+# __PACKAGE__->meta->initialize;
+
 1;
 ;