You are here

function gdpr_consent_update_7102 in GDPR Consent 7

Add the new database field for technical details format.

File

./gdpr_consent.install, line 175
Installation and update functions for the Consent module.

Code

function gdpr_consent_update_7102() {
  $spec = array(
    'type' => 'varchar',
    'not null' => FALSE,
    'length' => 255,
  );
  db_add_field('gdpr_consent_conditions', 'format_details', $spec);
}