You are here

function webform_protected_downloads_update_6002 in Webform Protected Downloads 6

File

./webform_protected_downloads.install, line 168

Code

function webform_protected_downloads_update_6002() {
  $ret = array();
  db_add_field($ret, 'wpd_node_configuration', 'retroactive', array(
    'description' => 'The timestamp when the session expires',
    'type' => 'int',
    'size' => 'tiny',
    'unsigned' => TRUE,
    'not null' => TRUE,
    'default' => 1,
  ));
  return $ret;
}