X-Git-Url: http://wagnertech.de/git?a=blobdiff_plain;f=SL%2FDB%2FMetaSetup%2FProjectStatus.pm;h=e7f4a4ca0341c76822ba123dfedf4d661e74dd0e;hb=2c597c2df21ae8025159665f39845ccfe9b7dabd;hp=dbf77346c45021a6247dcba6836c256e1bc04311;hpb=03f5aaa3c601956206f0c2a142c1e19f6981b326;p=kivitendo-erp.git diff --git a/SL/DB/MetaSetup/ProjectStatus.pm b/SL/DB/MetaSetup/ProjectStatus.pm index dbf77346c..e7f4a4ca0 100644 --- a/SL/DB/MetaSetup/ProjectStatus.pm +++ b/SL/DB/MetaSetup/ProjectStatus.pm @@ -6,28 +6,20 @@ use strict; use base qw(SL::DB::Object); -__PACKAGE__->meta->setup( - table => 'project_status', +__PACKAGE__->meta->table('project_statuses'); - columns => [ - id => { type => 'serial', not_null => 1 }, - name => { type => 'text', not_null => 1 }, - description => { type => 'text', not_null => 1 }, - position => { type => 'integer', not_null => 1 }, - itime => { type => 'timestamp', default => '06.05.2013 14:26:18.81159' }, - mtime => { type => 'timestamp' }, - ], +__PACKAGE__->meta->columns( + description => { type => 'text', not_null => 1 }, + id => { type => 'integer', not_null => 1, sequence => 'project_status_id_seq' }, + itime => { type => 'timestamp', default => 'now()' }, + mtime => { type => 'timestamp' }, + name => { type => 'text', not_null => 1 }, + position => { type => 'integer', not_null => 1 }, +); - primary_key_columns => [ 'id' ], +__PACKAGE__->meta->primary_key_columns([ 'id' ]); - relationships => [ - project => { - class => 'SL::DB::Project', - column_map => { id => 'project_status_id' }, - type => 'one to many', - }, - ], -); +__PACKAGE__->meta->allow_inline_column_values(1); 1; ;