kivitendo/SL/DB/MetaSetup/RequirementSpecVersion.pm @ 70ba777d
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::RequirementSpecVersion;
|
||||
use strict;
|
||||
use base qw(SL::DB::Object);
|
||||
1561b7f3 | Moritz Bunkus | __PACKAGE__->meta->table('requirement_spec_versions');
|
||
__PACKAGE__->meta->columns(
|
||||
comment => { type => 'text' },
|
||||
description => { type => 'text', not_null => 1 },
|
||||
id => { type => 'serial', not_null => 1 },
|
||||
itime => { type => 'timestamp', default => 'now()' },
|
||||
mtime => { type => 'timestamp' },
|
||||
version_number => { type => 'integer' },
|
||||
);
|
||||
__PACKAGE__->meta->primary_key_columns([ 'id' ]);
|
||||
__PACKAGE__->meta->allow_inline_column_values(1);
|
||||
d17e1b9d | Moritz Bunkus | 1;
|
||
;
|