You are here

function protected_node_update_7100 in Protected Node 7

Same name and namespace in other branches
  1. 1.0.x protected_node.install \protected_node_update_7100()

Adds a protected_node_emails field to the protected_nodes table.

File

./protected_node.install, line 93
Install, update and uninstall functions for the protected_node module.

Code

function protected_node_update_7100() {
  db_add_field('protected_nodes', 'protected_node_emails', array(
    'type' => 'text',
    'size' => 'normal',
    'description' => 'List of email addresses which received the last notification.',
  ));
}