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 base qw(SL::DB::Object);
 
   9 __PACKAGE__->meta->setup(
 
  10   table   => 'custom_variable_configs',
 
  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' },
 
  29   primary_key_columns => [ 'id' ],
 
  31   allow_inline_column_values => 1,