kivitendo/SL/DB/MetaSetup/CustomVariableConfig.pm @ 7b1da9c3
4fd22b56 | Sven Schöling | # This file has been auto-generated. Do not modify it; it will be overwritten
|
||
# by rose_auto_create_model.pl automatically.
|
||||
package SL::DB::CustomVariableConfig;
|
||||
use strict;
|
||||
2ea07c13 | Sven Schöling | use parent qw(SL::DB::Object);
|
||
4fd22b56 | Sven Schöling | |||
b8b112a3 | Sven Schöling | __PACKAGE__->meta->table('custom_variable_configs');
|
||
__PACKAGE__->meta->columns(
|
||||
default_value => { type => 'text' },
|
||||
3eb3d1b1 | Moritz Bunkus | description => { type => 'text', not_null => 1 },
|
||
187c4ee1 | Jan Büren | first_tab => { type => 'boolean', default => 'false', not_null => 1 },
|
||
3eb3d1b1 | Moritz Bunkus | flags => { type => 'text' },
|
||
id => { type => 'integer', not_null => 1, sequence => 'custom_variable_configs_id' },
|
||||
b8b112a3 | Sven Schöling | includeable => { type => 'boolean', not_null => 1 },
|
||
included_by_default => { type => 'boolean', not_null => 1 },
|
||||
itime => { type => 'timestamp', default => 'now()' },
|
||||
3eb3d1b1 | Moritz Bunkus | module => { type => 'text', not_null => 1 },
|
||
b8b112a3 | Sven Schöling | mtime => { type => 'timestamp' },
|
||
3eb3d1b1 | Moritz Bunkus | name => { type => 'text', not_null => 1 },
|
||
options => { type => 'text' },
|
||||
searchable => { type => 'boolean', not_null => 1 },
|
||||
sortkey => { type => 'integer', not_null => 1 },
|
||||
type => { type => 'text', not_null => 1 },
|
||||
4fd22b56 | Sven Schöling | );
|
||
b8b112a3 | Sven Schöling | __PACKAGE__->meta->primary_key_columns([ 'id' ]);
|
||
__PACKAGE__->meta->allow_inline_column_values(1);
|
||||
4fd22b56 | Sven Schöling | 1;
|
||
;
|