X-Git-Url: http://wagnertech.de/git?a=blobdiff_plain;f=SL%2FDB%2FMetaSetup%2FDepartment.pm;h=93aa92cdc653d04d48db9c0362a1e934247ed286;hb=debd14edcc23a6168e827be861a052f396aee901;hp=1d1d95709936b6c5c25279fef81f508a781abe2a;hpb=6cf3f7762efd40bee49a2b8f11bb4ab6915d9071;p=kivitendo-erp.git diff --git a/SL/DB/MetaSetup/Department.pm b/SL/DB/MetaSetup/Department.pm index 1d1d95709..93aa92cdc 100644 --- a/SL/DB/MetaSetup/Department.pm +++ b/SL/DB/MetaSetup/Department.pm @@ -12,14 +12,11 @@ __PACKAGE__->meta->setup( columns => [ id => { type => 'integer', not_null => 1, sequence => 'id' }, description => { type => 'text' }, - role => { type => 'character', default => 'P', length => 1 }, itime => { type => 'timestamp', default => 'now()' }, mtime => { type => 'timestamp' }, ], primary_key_columns => [ 'id' ], - - allow_inline_column_values => 1, ); 1;