684d2291706789bcf5cf683636cfb1cf732fa518
[kivitendo-erp.git] / SL / DB / MetaSetup / CustomVariableConfig.pm
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;
4
5 use strict;
6
7 use parent qw(SL::DB::Object);
8
9 __PACKAGE__->meta->table('custom_variable_configs');
10
11 __PACKAGE__->meta->columns(
12   default_value       => { type => 'text' },
13   description         => { type => 'text', not_null => 1 },
14   first_tab           => { type => 'boolean', default => 'false', not_null => 1 },
15   flags               => { type => 'text' },
16   id                  => { type => 'integer', not_null => 1, sequence => 'custom_variable_configs_id' },
17   includeable         => { type => 'boolean', not_null => 1 },
18   included_by_default => { type => 'boolean', not_null => 1 },
19   itime               => { type => 'timestamp', default => 'now()' },
20   module              => { type => 'text', not_null => 1 },
21   mtime               => { type => 'timestamp' },
22   name                => { type => 'text', not_null => 1 },
23   options             => { type => 'text' },
24   searchable          => { type => 'boolean', not_null => 1 },
25   sortkey             => { type => 'integer', not_null => 1 },
26   type                => { type => 'text', not_null => 1 },
27 );
28
29 __PACKAGE__->meta->primary_key_columns([ 'id' ]);
30
31 __PACKAGE__->meta->allow_inline_column_values(1);
32
33 1;
34 ;