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