kivitendo/SL/DB/MetaSetup/RequirementSpecPredefinedText.pm @ 220779bd
d17e1b9d | Moritz Bunkus | # This file has been auto-generated. Do not modify it; it will be overwritten
|
||
# by rose_auto_create_model.pl automatically.
|
||||
package SL::DB::RequirementSpecPredefinedText;
|
||||
use strict;
|
||||
2ea07c13 | Sven Schöling | use parent qw(SL::DB::Object);
|
||
d17e1b9d | Moritz Bunkus | |||
1561b7f3 | Moritz Bunkus | __PACKAGE__->meta->table('requirement_spec_predefined_texts');
|
||
__PACKAGE__->meta->columns(
|
||||
d860b41d | Moritz Bunkus | description => { type => 'text', not_null => 1 },
|
||
id => { type => 'serial', not_null => 1 },
|
||||
itime => { type => 'timestamp', default => 'now()' },
|
||||
mtime => { type => 'timestamp' },
|
||||
position => { type => 'integer', not_null => 1 },
|
||||
text => { type => 'text', not_null => 1 },
|
||||
title => { type => 'text', not_null => 1 },
|
||||
useable_for_sections => { type => 'boolean', default => 'false', not_null => 1 },
|
||||
useable_for_text_blocks => { type => 'boolean', default => 'false', not_null => 1 },
|
||||
1561b7f3 | Moritz Bunkus | );
|
||
d17e1b9d | Moritz Bunkus | |||
1561b7f3 | Moritz Bunkus | __PACKAGE__->meta->primary_key_columns([ 'id' ]);
|
||
d17e1b9d | Moritz Bunkus | |||
1561b7f3 | Moritz Bunkus | __PACKAGE__->meta->unique_keys([ 'description' ]);
|
||
d17e1b9d | Moritz Bunkus | |||
1561b7f3 | Moritz Bunkus | __PACKAGE__->meta->allow_inline_column_values(1);
|
||
d17e1b9d | Moritz Bunkus | |||
1;
|
||||
;
|