MetaSetup: Spalten- und Fremdschlüsselnamen alphabetisch sortieren
[kivitendo-erp.git] / SL / DB / MetaSetup / Shipto.pm
index f7b90d8..bb3a9bc 100644 (file)
@@ -9,30 +9,28 @@ use base qw(SL::DB::Object);
 __PACKAGE__->meta->table('shipto');
 
 __PACKAGE__->meta->columns(
-  trans_id           => { type => 'integer' },
-  shiptoname         => { type => 'varchar', length => 75 },
-  shiptodepartment_1 => { type => 'varchar', length => 75 },
-  shiptodepartment_2 => { type => 'varchar', length => 75 },
-  shiptostreet       => { type => 'varchar', length => 75 },
-  shiptozipcode      => { type => 'varchar', length => 75 },
-  shiptocity         => { type => 'varchar', length => 75 },
-  shiptocountry      => { type => 'varchar', length => 75 },
-  shiptocontact      => { type => 'varchar', length => 75 },
-  shiptophone        => { type => 'varchar', length => 30 },
-  shiptofax          => { type => 'varchar', length => 30 },
-  shiptoemail        => { type => 'text' },
   itime              => { type => 'timestamp', default => 'now()' },
-  mtime              => { type => 'timestamp' },
   module             => { type => 'text' },
+  mtime              => { type => 'timestamp' },
   shipto_id          => { type => 'integer', not_null => 1, sequence => 'id' },
+  shiptocity         => { type => 'varchar', length => 75 },
+  shiptocontact      => { type => 'varchar', length => 75 },
+  shiptocountry      => { type => 'varchar', length => 75 },
   shiptocp_gender    => { type => 'text' },
+  shiptodepartment_1 => { type => 'varchar', length => 75 },
+  shiptodepartment_2 => { type => 'varchar', length => 75 },
+  shiptoemail        => { type => 'text' },
+  shiptofax          => { type => 'varchar', length => 30 },
+  shiptoname         => { type => 'varchar', length => 75 },
+  shiptophone        => { type => 'varchar', length => 30 },
+  shiptostreet       => { type => 'varchar', length => 75 },
+  shiptozipcode      => { type => 'varchar', length => 75 },
+  trans_id           => { type => 'integer' },
 );
 
 __PACKAGE__->meta->primary_key_columns([ 'shipto_id' ]);
 
 __PACKAGE__->meta->allow_inline_column_values(1);
 
-# __PACKAGE__->meta->initialize;
-
 1;
 ;