X-Git-Url: http://wagnertech.de/git?a=blobdiff_plain;f=SL%2FDB%2FMetaSetup%2FBin.pm;h=02ca5db481eb9b9548522f0eaf3ce0bc79ba6126;hb=187c4ee192da9281f42800e6ac8ae08f23d9a9d6;hp=ff225207fda8940e77bd406d908be4807e156f3f;hpb=6cf3f7762efd40bee49a2b8f11bb4ab6915d9071;p=kivitendo-erp.git diff --git a/SL/DB/MetaSetup/Bin.pm b/SL/DB/MetaSetup/Bin.pm index ff225207f..02ca5db48 100644 --- a/SL/DB/MetaSetup/Bin.pm +++ b/SL/DB/MetaSetup/Bin.pm @@ -4,29 +4,27 @@ package SL::DB::Bin; use strict; -use base qw(SL::DB::Object); +use parent qw(SL::DB::Object); -__PACKAGE__->meta->setup( - table => 'bin', +__PACKAGE__->meta->table('bin'); - columns => [ - id => { type => 'integer', not_null => 1, sequence => 'id' }, - warehouse_id => { type => 'integer', not_null => 1 }, - description => { type => 'text' }, - itime => { type => 'timestamp', default => 'now()' }, - mtime => { type => 'timestamp' }, - ], +__PACKAGE__->meta->columns( + description => { type => 'text' }, + id => { type => 'integer', not_null => 1, sequence => 'id' }, + itime => { type => 'timestamp', default => 'now()' }, + mtime => { type => 'timestamp' }, + warehouse_id => { type => 'integer', not_null => 1 }, +); - primary_key_columns => [ 'id' ], +__PACKAGE__->meta->primary_key_columns([ 'id' ]); - allow_inline_column_values => 1, +__PACKAGE__->meta->allow_inline_column_values(1); - foreign_keys => [ - warehouse => { - class => 'SL::DB::Warehouse', - key_columns => { warehouse_id => 'id' }, - }, - ], +__PACKAGE__->meta->foreign_keys( + warehouse => { + class => 'SL::DB::Warehouse', + key_columns => { warehouse_id => 'id' }, + }, ); 1;