X-Git-Url: http://wagnertech.de/gitweb/gitweb.cgi/mfinanz.git/blobdiff_plain/6cf3f7762efd40bee49a2b8f11bb4ab6915d9071..dec3d0e25481e0392fa35bca6b10b315022220cd:/SL/DB/MetaSetup/CustomVariableConfig.pm diff --git a/SL/DB/MetaSetup/CustomVariableConfig.pm b/SL/DB/MetaSetup/CustomVariableConfig.pm index 5ee01c19d..c4077f805 100644 --- a/SL/DB/MetaSetup/CustomVariableConfig.pm +++ b/SL/DB/MetaSetup/CustomVariableConfig.pm @@ -11,16 +11,16 @@ __PACKAGE__->meta->setup( columns => [ id => { type => 'integer', not_null => 1, sequence => 'custom_variable_configs_id' }, - name => { type => 'text' }, - description => { type => 'text' }, - type => { type => 'varchar', length => 20 }, - module => { type => 'varchar', length => 20 }, + name => { type => 'text', not_null => 1 }, + description => { type => 'text', not_null => 1 }, + type => { type => 'text', not_null => 1 }, + module => { type => 'text', not_null => 1 }, default_value => { type => 'text' }, options => { type => 'text' }, - searchable => { type => 'boolean' }, - includeable => { type => 'boolean' }, - included_by_default => { type => 'boolean' }, - sortkey => { type => 'integer' }, + searchable => { type => 'boolean', not_null => 1 }, + includeable => { type => 'boolean', not_null => 1 }, + included_by_default => { type => 'boolean', not_null => 1 }, + sortkey => { type => 'integer', not_null => 1 }, itime => { type => 'timestamp', default => 'now()' }, mtime => { type => 'timestamp' }, flags => { type => 'text' },