X-Git-Url: http://wagnertech.de/git?a=blobdiff_plain;f=SL%2FDB%2FMetaSetup%2FAuthGroup.pm;fp=SL%2FDB%2FMetaSetup%2FAuthGroup.pm;h=d1bc5fd88fa53bde5b81fba887706b62a72f1f0b;hb=53593baa211863fbf66540cf1bcc36c8fb37257f;hp=2671cef8b00c7cc7d3bb6975a6edaee2a28a8a6e;hpb=deb4d2dbb676d7d6f69dfe7815d6e0cb09bd4a44;p=kivitendo-erp.git diff --git a/SL/DB/MetaSetup/AuthGroup.pm b/SL/DB/MetaSetup/AuthGroup.pm index 2671cef8b..d1bc5fd88 100644 --- a/SL/DB/MetaSetup/AuthGroup.pm +++ b/SL/DB/MetaSetup/AuthGroup.pm @@ -4,22 +4,20 @@ package SL::DB::AuthGroup; use strict; -use base qw(SL::DB::Object); +use parent qw(SL::DB::Object); __PACKAGE__->meta->table('group'); __PACKAGE__->meta->schema('auth'); __PACKAGE__->meta->columns( + description => { type => 'text' }, id => { type => 'serial', not_null => 1 }, name => { type => 'text', not_null => 1 }, - description => { type => 'text' }, ); __PACKAGE__->meta->primary_key_columns([ 'id' ]); __PACKAGE__->meta->unique_keys([ 'name' ]); -# __PACKAGE__->meta->initialize; - 1; ;