1 # This file has been auto-generated. Do not modify it; it will be overwritten
2 # by rose_auto_create_model.pl automatically.
3 package SL::DB::CustomVariableConfig;
7 use parent qw(SL::DB::Object);
9 __PACKAGE__->meta->table('custom_variable_configs');
11 __PACKAGE__->meta->columns(
12 default_value => { type => 'text' },
13 description => { type => 'text', not_null => 1 },
14 flags => { type => 'text' },
15 id => { type => 'integer', not_null => 1, sequence => 'custom_variable_configs_id' },
16 includeable => { type => 'boolean', not_null => 1 },
17 included_by_default => { type => 'boolean', not_null => 1 },
18 itime => { type => 'timestamp', default => 'now()' },
19 module => { type => 'text', not_null => 1 },
20 mtime => { type => 'timestamp' },
21 name => { type => 'text', not_null => 1 },
22 options => { type => 'text' },
23 searchable => { type => 'boolean', not_null => 1 },
24 sortkey => { type => 'integer', not_null => 1 },
25 type => { type => 'text', not_null => 1 },
28 __PACKAGE__->meta->primary_key_columns([ 'id' ]);
30 __PACKAGE__->meta->allow_inline_column_values(1);