Projekt

Allgemein

Profil

Herunterladen (781 Bytes) Statistiken
| Zweig: | Markierung: | Revision:
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::RequirementSpecStatus;

use strict;

2ea07c13 Sven Schöling
use parent qw(SL::DB::Object);
d17e1b9d Moritz Bunkus
1561b7f3 Moritz Bunkus
__PACKAGE__->meta->table('requirement_spec_statuses');

__PACKAGE__->meta->columns(
description => { type => 'text', not_null => 1 },
id => { type => 'serial', not_null => 1 },
itime => { type => 'timestamp', default => 'now()' },
mtime => { type => 'timestamp' },
name => { type => 'text', not_null => 1 },
position => { type => 'integer', not_null => 1 },
);
d17e1b9d Moritz Bunkus
1561b7f3 Moritz Bunkus
__PACKAGE__->meta->primary_key_columns([ 'id' ]);
d17e1b9d Moritz Bunkus
1561b7f3 Moritz Bunkus
__PACKAGE__->meta->unique_keys([ 'name', 'description' ]);
d17e1b9d Moritz Bunkus
1561b7f3 Moritz Bunkus
__PACKAGE__->meta->allow_inline_column_values(1);
d17e1b9d Moritz Bunkus
1;
;