X-Git-Url: http://wagnertech.de/git?p=kivitendo-erp.git;a=blobdiff_plain;f=SL%2FDB%2FMetaSetup%2FGLTransaction.pm;fp=SL%2FDB%2FMetaSetup%2FGLTransaction.pm;h=a2cda636a6f58dc60533eb35a9369f5121a9a1a2;hp=80c7e851a23966402630f4d1bfe9ab4fa2478095;hb=b293ff8ad52fc76ba0c44783e3982418114d6b08;hpb=d4925a8b60f04674885e30d9316dc0263f8b9a84 diff --git a/SL/DB/MetaSetup/GLTransaction.pm b/SL/DB/MetaSetup/GLTransaction.pm index 80c7e851a..a2cda636a 100644 --- a/SL/DB/MetaSetup/GLTransaction.pm +++ b/SL/DB/MetaSetup/GLTransaction.pm @@ -9,25 +9,26 @@ use parent qw(SL::DB::Object); __PACKAGE__->meta->table('gl'); __PACKAGE__->meta->columns( - cb_transaction => { type => 'boolean' }, - deliverydate => { type => 'date' }, - department_id => { type => 'integer' }, - description => { type => 'text' }, - employee_id => { type => 'integer' }, - gldate => { type => 'date', default => 'now' }, - id => { type => 'integer', not_null => 1, sequence => 'glid' }, - imported => { type => 'boolean', default => 'false' }, - itime => { type => 'timestamp', default => 'now()' }, - mtime => { type => 'timestamp' }, - notes => { type => 'text' }, - ob_transaction => { type => 'boolean' }, - reference => { type => 'text' }, - storno => { type => 'boolean', default => 'false' }, - storno_id => { type => 'integer' }, - tax_point => { type => 'date' }, - taxincluded => { type => 'boolean' }, - transdate => { type => 'date', default => 'now' }, - type => { type => 'text' }, + cb_transaction => { type => 'boolean' }, + deliverydate => { type => 'date' }, + department_id => { type => 'integer' }, + description => { type => 'text' }, + employee_id => { type => 'integer' }, + gldate => { type => 'date', default => 'now' }, + id => { type => 'integer', not_null => 1, sequence => 'glid' }, + imported => { type => 'boolean', default => 'false' }, + itime => { type => 'timestamp', default => 'now()' }, + mtime => { type => 'timestamp' }, + notes => { type => 'text' }, + ob_transaction => { type => 'boolean' }, + reference => { type => 'text' }, + storno => { type => 'boolean', default => 'false' }, + storno_id => { type => 'integer' }, + tax_point => { type => 'date' }, + taxincluded => { type => 'boolean' }, + transaction_description => { type => 'text' }, + transdate => { type => 'date', default => 'now' }, + type => { type => 'text' }, ); __PACKAGE__->meta->primary_key_columns([ 'id' ]);