af6d69084f41b8cea66186ee513398a9b0026e02
[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   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 },
26 );
27
28 __PACKAGE__->meta->primary_key_columns([ 'id' ]);
29
30 __PACKAGE__->meta->allow_inline_column_values(1);
31
32 1;
33 ;