X-Git-Url: http://wagnertech.de/gitweb/gitweb.cgi/mfinanz.git/blobdiff_plain/3eb3d1b144adb92e62de08e67dc6ff3d39bf7483..ae4cec429306e2f1372d9cbd7a2ac40ecb977869:/SL/DB/MetaSetup/CustomVariableConfig.pm diff --git a/SL/DB/MetaSetup/CustomVariableConfig.pm b/SL/DB/MetaSetup/CustomVariableConfig.pm index fb89589b6..684d22917 100644 --- a/SL/DB/MetaSetup/CustomVariableConfig.pm +++ b/SL/DB/MetaSetup/CustomVariableConfig.pm @@ -4,13 +4,14 @@ package SL::DB::CustomVariableConfig; use strict; -use base qw(SL::DB::Object); +use parent qw(SL::DB::Object); __PACKAGE__->meta->table('custom_variable_configs'); __PACKAGE__->meta->columns( default_value => { type => 'text' }, description => { type => 'text', not_null => 1 }, + first_tab => { type => 'boolean', default => 'false', not_null => 1 }, flags => { type => 'text' }, id => { type => 'integer', not_null => 1, sequence => 'custom_variable_configs_id' }, includeable => { type => 'boolean', not_null => 1 },