5ee01c19dc9ba9723cca49f8ac14144ae5c1cf47
[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 base qw(SL::DB::Object);
8
9 __PACKAGE__->meta->setup(
10   table   => 'custom_variable_configs',
11
12   columns => [
13     id                  => { type => 'integer', not_null => 1, sequence => 'custom_variable_configs_id' },
14     name                => { type => 'text' },
15     description         => { type => 'text' },
16     type                => { type => 'varchar', length => 20 },
17     module              => { type => 'varchar', length => 20 },
18     default_value       => { type => 'text' },
19     options             => { type => 'text' },
20     searchable          => { type => 'boolean' },
21     includeable         => { type => 'boolean' },
22     included_by_default => { type => 'boolean' },
23     sortkey             => { type => 'integer' },
24     itime               => { type => 'timestamp', default => 'now()' },
25     mtime               => { type => 'timestamp' },
26     flags               => { type => 'text' },
27   ],
28
29   primary_key_columns => [ 'id' ],
30
31   allow_inline_column_values => 1,
32 );
33
34 1;
35 ;