X-Git-Url: http://wagnertech.de/gitweb/gitweb.cgi/kivitendo-erp.git/blobdiff_plain/4bcf880408fcc4270084f36520d4fd2cfd509fbc..2a8df53fac09e95c9199021399e2343ff766535d:/SL/DB/MetaSetup/GenericTranslation.pm diff --git a/SL/DB/MetaSetup/GenericTranslation.pm b/SL/DB/MetaSetup/GenericTranslation.pm index 94556c76c..863cd3fd0 100644 --- a/SL/DB/MetaSetup/GenericTranslation.pm +++ b/SL/DB/MetaSetup/GenericTranslation.pm @@ -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; ;