Vorgangsbezeichnung in Dialogbuchungs-Vorlage: DB-Upgrade und Rose
authorBernd Bleßmann <bernd@kivitendo-premium.de>
Mon, 21 Feb 2022 10:39:23 +0000 (11:39 +0100)
committerBernd Bleßmann <bernd@kivitendo-premium.de>
Wed, 9 Mar 2022 10:12:04 +0000 (11:12 +0100)
SL/DB/MetaSetup/RecordTemplate.pm
sql/Pg-upgrade2/add_record_templates_transaction_description.sql [new file with mode: 0644]

index 83850ff..374f00c 100644 (file)
@@ -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' ]);
diff --git a/sql/Pg-upgrade2/add_record_templates_transaction_description.sql b/sql/Pg-upgrade2/add_record_templates_transaction_description.sql
new file mode 100644 (file)
index 0000000..e54fc98
--- /dev/null
@@ -0,0 +1,5 @@
+-- @tag: add_record_templates_transaction_description
+-- @description: Vorgangsbezeichnung in Dialog-Vorlage ergänzen
+-- @depends: release_3_5_8 create_record_template_tables
+
+ALTER TABLE record_templates ADD COLUMN transaction_description TEXT;