Projekt

Allgemein

Profil

Herunterladen (740 Bytes) Statistiken
| Zweig: | Markierung: | Revision:
03f5aaa3 Sven Schöling
# This file has been auto-generated. Do not modify it; it will be overwritten
# by rose_auto_create_model.pl automatically.
package SL::DB::ProjectStatus;

use strict;

use base qw(SL::DB::Object);

16d62a38 Moritz Bunkus
__PACKAGE__->meta->table('project_statuses');
03f5aaa3 Sven Schöling
1561b7f3 Moritz Bunkus
__PACKAGE__->meta->columns(
description => { type => 'text', not_null => 1 },
7e0130b0 Moritz Bunkus
id => { type => 'integer', not_null => 1, sequence => 'project_status_id_seq' },
57d97e2b Moritz Bunkus
itime => { type => 'timestamp', default => 'now()' },
1561b7f3 Moritz Bunkus
mtime => { type => 'timestamp' },
name => { type => 'text', not_null => 1 },
position => { type => 'integer', not_null => 1 },
03f5aaa3 Sven Schöling
);

1561b7f3 Moritz Bunkus
__PACKAGE__->meta->primary_key_columns([ 'id' ]);

57d97e2b Moritz Bunkus
__PACKAGE__->meta->allow_inline_column_values(1);

03f5aaa3 Sven Schöling
1;
;