]> wagnertech.de Git - kivitendo-erp.git/blobdiff - SL/DB/MetaSetup/GenericTranslation.pm
MetaSetup: Spalten- und Fremdschlüsselnamen alphabetisch sortieren
[kivitendo-erp.git] / SL / DB / MetaSetup / GenericTranslation.pm
index 94556c76c2c508dd98dbb689cfa84c05ce87b753..863cd3fd0ae7f4253b5960ceee129a356feda4a0 100644 (file)
@@ -11,9 +11,9 @@ __PACKAGE__->meta->table('generic_translations');
 __PACKAGE__->meta->columns(
   id               => { type => 'serial', not_null => 1 },
   language_id      => { type => 'integer' },
-  translation_type => { type => 'varchar', length => 100, not_null => 1 },
-  translation_id   => { type => 'integer' },
   translation      => { type => 'text' },
+  translation_id   => { type => 'integer' },
+  translation_type => { type => 'varchar', length => 100, not_null => 1 },
 );
 
 __PACKAGE__->meta->primary_key_columns([ 'id' ]);
@@ -25,7 +25,5 @@ __PACKAGE__->meta->foreign_keys(
   },
 );
 
-# __PACKAGE__->meta->initialize;
-
 1;
 ;