Projekt

Allgemein

Profil

Herunterladen (1,16 KB) Statistiken
| Zweig: | Markierung: | Revision:
82515b2d 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::Shipto;

use strict;

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

b8b112a3 Sven Schöling
__PACKAGE__->meta->table('shipto');

__PACKAGE__->meta->columns(
itime => { type => 'timestamp', default => 'now()' },
module => { type => 'text' },
3eb3d1b1 Moritz Bunkus
mtime => { type => 'timestamp' },
b8b112a3 Sven Schöling
shipto_id => { type => 'integer', not_null => 1, sequence => 'id' },
b50f89e5 Moritz Bunkus
shiptocity => { type => 'text' },
shiptocontact => { type => 'text' },
shiptocountry => { type => 'text' },
b8b112a3 Sven Schöling
shiptocp_gender => { type => 'text' },
b50f89e5 Moritz Bunkus
shiptodepartment_1 => { type => 'text' },
shiptodepartment_2 => { type => 'text' },
3eb3d1b1 Moritz Bunkus
shiptoemail => { type => 'text' },
b50f89e5 Moritz Bunkus
shiptofax => { type => 'text' },
shiptoname => { type => 'text' },
shiptophone => { type => 'text' },
shiptostreet => { type => 'text' },
shiptozipcode => { type => 'text' },
3eb3d1b1 Moritz Bunkus
trans_id => { type => 'integer' },
b8b112a3 Sven Schöling
);

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

__PACKAGE__->meta->allow_inline_column_values(1);

82515b2d Sven Schöling
1;
;