Projekt

Allgemein

Profil

Herunterladen (548 Bytes) Statistiken
| Zweig: | Markierung: | Revision:
f97b0778 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::TaxZone;

use strict;

2ea07c13 Sven Schöling
use parent qw(SL::DB::Object);
f97b0778 Sven Schöling
b8b112a3 Sven Schöling
__PACKAGE__->meta->table('tax_zones');
f97b0778 Sven Schöling
b8b112a3 Sven Schöling
__PACKAGE__->meta->columns(
description => { type => 'text' },
f5c454e3 Niclas Zimmermann
id => { type => 'integer', not_null => 1, sequence => 'id' },
6e603868 Geoffrey Richardson
obsolete => { type => 'boolean', default => 'false' },
f5c454e3 Niclas Zimmermann
sortkey => { type => 'integer', not_null => 1 },
f97b0778 Sven Schöling
);

b8b112a3 Sven Schöling
__PACKAGE__->meta->primary_key_columns([ 'id' ]);

f97b0778 Sven Schöling
1;
;