Projekt

Allgemein

Profil

Herunterladen (1,07 KB) Statistiken
| Zweig: | Markierung: | Revision:
# This file has been auto-generated. Do not modify it; it will be overwritten
# by rose_auto_create_model.pl automatically.
package SL::DB::MakeModel;

use strict;

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

__PACKAGE__->meta->table('makemodel');

__PACKAGE__->meta->columns(
id => { type => 'serial', not_null => 1 },
itime => { type => 'timestamp', default => 'now()' },
lastcost => { type => 'numeric', precision => 15, scale => 5 },
lastupdate => { type => 'date' },
make => { type => 'integer' },
model => { type => 'text' },
mtime => { type => 'timestamp' },
part_description => { type => 'text' },
part_longdescription => { type => 'text' },
parts_id => { type => 'integer' },
sortorder => { type => 'integer' },
);

__PACKAGE__->meta->primary_key_columns([ 'id' ]);

__PACKAGE__->meta->allow_inline_column_values(1);

__PACKAGE__->meta->foreign_keys(
vendor => {
class => 'SL::DB::Vendor',
key_columns => { make => 'id' },
},
);

1;
;
(79-79/156)