X-Git-Url: http://wagnertech.de/git?a=blobdiff_plain;ds=sidebyside;f=SL%2FDB%2FMetaSetup%2FRecordTemplate.pm;fp=SL%2FDB%2FMetaSetup%2FRecordTemplate.pm;h=374f00c7be23158cca39427f51ee79f37ca949f1;hb=b293ff8ad52fc76ba0c44783e3982418114d6b08;hp=83850fffa4bd942a6f737e725bc9904e012a472f;hpb=d4925a8b60f04674885e30d9316dc0263f8b9a84;p=kivitendo-erp.git diff --git a/SL/DB/MetaSetup/RecordTemplate.pm b/SL/DB/MetaSetup/RecordTemplate.pm index 83850fffa..374f00c7b 100644 --- a/SL/DB/MetaSetup/RecordTemplate.pm +++ b/SL/DB/MetaSetup/RecordTemplate.pm @@ -9,28 +9,29 @@ use parent qw(SL::DB::Object); __PACKAGE__->meta->table('record_templates'); __PACKAGE__->meta->columns( - ar_ap_chart_id => { type => 'integer' }, - cb_transaction => { type => 'boolean', default => 'false', not_null => 1 }, - currency_id => { type => 'integer', not_null => 1 }, - customer_id => { type => 'integer' }, - department_id => { type => 'integer' }, - description => { type => 'text' }, - direct_debit => { type => 'boolean', default => 'false', not_null => 1 }, - employee_id => { type => 'integer' }, - id => { type => 'serial', not_null => 1 }, - itime => { type => 'timestamp', default => 'now()', not_null => 1 }, - mtime => { type => 'timestamp', default => 'now()', not_null => 1 }, - notes => { type => 'text' }, - ob_transaction => { type => 'boolean', default => 'false', not_null => 1 }, - ordnumber => { type => 'text' }, - payment_id => { type => 'integer' }, - project_id => { type => 'integer' }, - reference => { type => 'text' }, - show_details => { type => 'boolean', default => 'false', not_null => 1 }, - taxincluded => { type => 'boolean', default => 'false', not_null => 1 }, - template_name => { type => 'text', not_null => 1 }, - template_type => { type => 'enum', check_in => [ 'ar_transaction', 'ap_transaction', 'gl_transaction' ], db_type => 'record_template_type', not_null => 1 }, - vendor_id => { type => 'integer' }, + ar_ap_chart_id => { type => 'integer' }, + cb_transaction => { type => 'boolean', default => 'false', not_null => 1 }, + currency_id => { type => 'integer', not_null => 1 }, + customer_id => { type => 'integer' }, + department_id => { type => 'integer' }, + description => { type => 'text' }, + direct_debit => { type => 'boolean', default => 'false', not_null => 1 }, + employee_id => { type => 'integer' }, + id => { type => 'serial', not_null => 1 }, + itime => { type => 'timestamp', default => 'now()', not_null => 1 }, + mtime => { type => 'timestamp', default => 'now()', not_null => 1 }, + notes => { type => 'text' }, + ob_transaction => { type => 'boolean', default => 'false', not_null => 1 }, + ordnumber => { type => 'text' }, + payment_id => { type => 'integer' }, + project_id => { type => 'integer' }, + reference => { type => 'text' }, + show_details => { type => 'boolean', default => 'false', not_null => 1 }, + taxincluded => { type => 'boolean', default => 'false', not_null => 1 }, + template_name => { type => 'text', not_null => 1 }, + template_type => { type => 'enum', check_in => [ 'ar_transaction', 'ap_transaction', 'gl_transaction' ], db_type => 'record_template_type', not_null => 1 }, + transaction_description => { type => 'text' }, + vendor_id => { type => 'integer' }, ); __PACKAGE__->meta->primary_key_columns([ 'id' ]);