hook_install is missing, so transaction entity fields not installed at fresh install, only if upgrading from older version. Patch:

--- a/all/modules/commerce_cib/commerce_cib.install
+++ b/all/modules/commerce_cib/commerce_cib.install
@@ -1,9 +1,19 @@
 <?php
 /**
  * @file
- * Install file for COmmerce CIB module.
+ * Install file for Commerce CIB module.
  */
 
+
+/**
+ * Implements hook_install()
+ */
+function commerce_cib_install(){
+  // Set up transaction fields
+  _commerce_cib_configure_payment_entity();
+}
+
+
 /**
  * Implements hook_requirements().
  */

Comments

thomas73 created an issue. See original summary.

  • czigor committed 1301c34 on 7.x-2.x authored by thomas73
    Issue #2961730 by thomas73: hook_install is missing
    
czigor’s picture

Status: Needs review » Fixed

Committed, thanks!

Status: Fixed » Closed (fixed)

Automatically closed - issue fixed for 2 weeks with no activity.