You are here

function node_registration_update_9 in Node registration 7

Add column `private_fields`.

File

./node_registration.install, line 251
Install, uninstall, enable and disable hooks and schema.

Code

function node_registration_update_9() {
  db_add_field('node_registration_node', 'private_fields', array(
    'description' => 'Whether this node has node specific fields.',
    'type' => 'int',
    'not null' => FALSE,
    'default' => 0,
  ));
}