You are here

function webform_invitation_update_7200 in Webform Invitation 7.2

Add submission id column to codes table and component id column to base table.

File

./webform_invitation.install, line 111

Code

function webform_invitation_update_7200() {
  db_add_field('webform_invitation', 'cid', array(
    'type' => 'int',
    'not null' => TRUE,
    'default' => 0,
    'description' => 'Component ID of Webform Invitation textfield.',
  ));
  db_add_field('webform_invitation_codes', 'sid', array(
    'type' => 'int',
    'not null' => TRUE,
    'default' => 0,
    'description' => 'The submission ID using this code.',
  ));
}