1 # This file has been auto-generated. Do not modify it; it will be overwritten
 
   2 # by rose_auto_create_model.pl automatically.
 
   3 package SL::DB::Shipto;
 
   7 use parent qw(SL::DB::Object);
 
   9 __PACKAGE__->meta->table('shipto');
 
  11 __PACKAGE__->meta->columns(
 
  12   itime              => { type => 'timestamp', default => 'now()' },
 
  13   module             => { type => 'text' },
 
  14   mtime              => { type => 'timestamp' },
 
  15   shipto_id          => { type => 'integer', not_null => 1, sequence => 'id' },
 
  16   shiptocity         => { type => 'text' },
 
  17   shiptocontact      => { type => 'text' },
 
  18   shiptocountry      => { type => 'text' },
 
  19   shiptocp_gender    => { type => 'text' },
 
  20   shiptodepartment_1 => { type => 'text' },
 
  21   shiptodepartment_2 => { type => 'text' },
 
  22   shiptoemail        => { type => 'text' },
 
  23   shiptofax          => { type => 'text' },
 
  24   shiptogln          => { type => 'text' },
 
  25   shiptoname         => { type => 'text' },
 
  26   shiptophone        => { type => 'text' },
 
  27   shiptostreet       => { type => 'text' },
 
  28   shiptozipcode      => { type => 'text' },
 
  29   trans_id           => { type => 'integer' },
 
  32 __PACKAGE__->meta->primary_key_columns([ 'shipto_id' ]);
 
  34 __PACKAGE__->meta->allow_inline_column_values(1);