X-Git-Url: http://wagnertech.de/git?a=blobdiff_plain;f=SL%2FDB%2FMetaSetup%2FGLTransaction.pm;fp=SL%2FDB%2FMetaSetup%2FGLTransaction.pm;h=33f7121fd8ded3f83b9a20fcf14a8dc8eaf07149;hb=3eb3d1b144adb92e62de08e67dc6ff3d39bf7483;hp=54dca9aaced2ef96845c53fc2e0945e0aa8f4dc6;hpb=e7ae5b6a82491c2ea81c032e3dc9cea4e77792fc;p=kivitendo-erp.git diff --git a/SL/DB/MetaSetup/GLTransaction.pm b/SL/DB/MetaSetup/GLTransaction.pm index 54dca9aac..33f7121fd 100644 --- a/SL/DB/MetaSetup/GLTransaction.pm +++ b/SL/DB/MetaSetup/GLTransaction.pm @@ -9,22 +9,22 @@ use base qw(SL::DB::Object); __PACKAGE__->meta->table('gl'); __PACKAGE__->meta->columns( - id => { type => 'integer', not_null => 1, sequence => 'glid' }, - reference => { type => 'text' }, + cb_transaction => { type => 'boolean' }, + department_id => { type => 'integer' }, description => { type => 'text' }, - transdate => { type => 'date', default => 'now' }, - gldate => { type => 'date', default => 'now' }, employee_id => { type => 'integer' }, - notes => { type => 'text' }, - department_id => { type => 'integer' }, - taxincluded => { type => 'boolean' }, + gldate => { type => 'date', default => 'now' }, + id => { type => 'integer', not_null => 1, sequence => 'glid' }, itime => { type => 'timestamp', default => 'now()' }, mtime => { type => 'timestamp' }, - type => { type => 'text' }, + notes => { type => 'text' }, + ob_transaction => { type => 'boolean' }, + reference => { type => 'text' }, storno => { type => 'boolean', default => 'false' }, storno_id => { type => 'integer' }, - ob_transaction => { type => 'boolean' }, - cb_transaction => { type => 'boolean' }, + taxincluded => { type => 'boolean' }, + transdate => { type => 'date', default => 'now' }, + type => { type => 'text' }, ); __PACKAGE__->meta->primary_key_columns([ 'id' ]); @@ -43,7 +43,5 @@ __PACKAGE__->meta->foreign_keys( }, ); -# __PACKAGE__->meta->initialize; - 1; ;