You are here

function vkxp_update_7213 in VK CrossPoster 7.2

Add new status property to node.

1 call to vkxp_update_7213()
vkxp_install in ./vkxp.install
Implements hook_install().

File

./vkxp.install, line 95
vkxp.install Requirements and uninstall functions for the vkxp module.

Code

function vkxp_update_7213() {
  db_add_field('node', 'vkxp_sent', array(
    'definition' => 'Was sent to vk',
    'type' => 'int',
    'size' => 'tiny',
    'not null' => TRUE,
    'default' => 0,
  ));
}