]> wagnertech.de Git - kivitendo-erp.git/blobdiff - SL/DB/MetaSetup/AuthGroup.pm
Merge branch 'b-3.6.1' of ../kivitendo-erp_20220811
[kivitendo-erp.git] / SL / DB / MetaSetup / AuthGroup.pm
index 9e75aac33af0f2806ce1654b2dad867664743779..d1bc5fd88fa53bde5b81fba887706b62a72f1f0b 100644 (file)
@@ -4,22 +4,20 @@ package SL::DB::AuthGroup;
 
 use strict;
 
-use base qw(SL::DB::Object);
+use parent qw(SL::DB::Object);
 
-__PACKAGE__->meta->setup(
-  table   => 'group',
-  schema  => 'auth',
+__PACKAGE__->meta->table('group');
+__PACKAGE__->meta->schema('auth');
 
-  columns => [
-    id          => { type => 'serial', not_null => 1 },
-    name        => { type => 'text', not_null => 1 },
-    description => { type => 'text' },
-  ],
+__PACKAGE__->meta->columns(
+  description => { type => 'text' },
+  id          => { type => 'serial', not_null => 1 },
+  name        => { type => 'text', not_null => 1 },
+);
 
-  primary_key_columns => [ 'id' ],
+__PACKAGE__->meta->primary_key_columns([ 'id' ]);
 
-  unique_key => [ 'name' ],
-);
+__PACKAGE__->meta->unique_keys([ 'name' ]);
 
 1;
 ;