X-Git-Url: http://wagnertech.de/git?a=blobdiff_plain;f=SL%2FDB%2FMetaSetup%2FLanguage.pm;h=ccf4f8353cdf5079e4f0b893889db72e79fcf84f;hb=013804fdf4b69b04889d8bf8af182eda9e9d95a5;hp=f4ac9a933a7a0222a611ba3ca1d41bb48947ba83;hpb=b8b112a39bd601b0bc717646d78de470631da22a;p=kivitendo-erp.git diff --git a/SL/DB/MetaSetup/Language.pm b/SL/DB/MetaSetup/Language.pm index f4ac9a933..ccf4f8353 100644 --- a/SL/DB/MetaSetup/Language.pm +++ b/SL/DB/MetaSetup/Language.pm @@ -9,48 +9,20 @@ use base qw(SL::DB::Object); __PACKAGE__->meta->table('language'); __PACKAGE__->meta->columns( - id => { type => 'integer', not_null => 1, sequence => 'id' }, - description => { type => 'text' }, - template_code => { type => 'text' }, article_code => { type => 'text' }, + description => { type => 'text' }, + id => { type => 'integer', not_null => 1, sequence => 'id' }, itime => { type => 'timestamp', default => 'now()' }, mtime => { type => 'timestamp' }, - output_numberformat => { type => 'text' }, output_dateformat => { type => 'text' }, output_longdates => { type => 'boolean' }, + output_numberformat => { type => 'text' }, + template_code => { type => 'text' }, ); __PACKAGE__->meta->primary_key_columns([ 'id' ]); __PACKAGE__->meta->allow_inline_column_values(1); -__PACKAGE__->meta->relationships( - ap => { - class => 'SL::DB::PurchaseInvoice', - column_map => { id => 'language_id' }, - type => 'one to many', - }, - - ar => { - class => 'SL::DB::Invoice', - column_map => { id => 'language_id' }, - type => 'one to many', - }, - - customer => { - class => 'SL::DB::Customer', - column_map => { id => 'language_id' }, - type => 'one to many', - }, - - generic_translations => { - class => 'SL::DB::GenericTranslation', - column_map => { id => 'language_id' }, - type => 'one to many', - }, -); - -# __PACKAGE__->meta->initialize; - 1; ;