X-Git-Url: http://wagnertech.de/gitweb/gitweb.cgi/mfinanz.git/blobdiff_plain/c09313030ba77f61771483e69179fd916d9328cd..b8b112a39bd601b0bc717646d78de470631da22a:/SL/DB/MetaSetup/GenericTranslation.pm diff --git a/SL/DB/MetaSetup/GenericTranslation.pm b/SL/DB/MetaSetup/GenericTranslation.pm index 452222406..46a19caf5 100644 --- a/SL/DB/MetaSetup/GenericTranslation.pm +++ b/SL/DB/MetaSetup/GenericTranslation.pm @@ -6,26 +6,19 @@ use strict; use base qw(SL::DB::Object); -__PACKAGE__->meta->setup( - table => 'generic_translations', +__PACKAGE__->meta->table('generic_translations'); - 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' }, - ], +__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' }, +); - primary_key_columns => [ 'id' ], +__PACKAGE__->meta->primary_key_columns([ 'id' ]); - foreign_keys => [ - language => { - class => 'SL::DB::Language', - key_columns => { language_id => 'id' }, - }, - ], -); +# __PACKAGE__->meta->initialize; 1; ;