Projekt

Allgemein

Profil

Herunterladen (563 Bytes) Statistiken
| Zweig: | Markierung: | Revision:
4fd22b56 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::Pricegroup;

use strict;

2ea07c13 Sven Schöling
use parent qw(SL::DB::Object);
4fd22b56 Sven Schöling
b8b112a3 Sven Schöling
__PACKAGE__->meta->table('pricegroup');
4fd22b56 Sven Schöling
b8b112a3 Sven Schöling
__PACKAGE__->meta->columns(
id => { type => 'integer', not_null => 1, sequence => 'id' },
e48eb4dc Geoffrey Richardson
obsolete => { type => 'boolean', default => 'false' },
b8b112a3 Sven Schöling
pricegroup => { type => 'text', not_null => 1 },
e48eb4dc Geoffrey Richardson
sortkey => { type => 'integer', not_null => 1 },
b8b112a3 Sven Schöling
);

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

4fd22b56 Sven Schöling
1;
;