X-Git-Url: http://wagnertech.de/git?a=blobdiff_plain;f=SL%2FDB%2FMetaSetup%2FRecordTemplate.pm;h=a9f6f8814eda0b9cb65dbfada578dfe5483d251b;hb=7230b956646b33a6a2da270df50d1e8edf5e4dd2;hp=8fe4cf9dc0d195d3d81d0cc07f421a2c7ac97617;hpb=c8a3fef75e56acb4a3a513c4c0ea783a6f49e516;p=kivitendo-erp.git diff --git a/SL/DB/MetaSetup/RecordTemplate.pm b/SL/DB/MetaSetup/RecordTemplate.pm index 8fe4cf9dc..a9f6f8814 100644 --- a/SL/DB/MetaSetup/RecordTemplate.pm +++ b/SL/DB/MetaSetup/RecordTemplate.pm @@ -25,6 +25,7 @@ __PACKAGE__->meta->columns( ordnumber => { type => 'text' }, 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 },