You are here

function vkxp_schema_alter in VK CrossPoster 7.2

Implements hook_schema_alter().

File

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

Code

function vkxp_schema_alter(&$schema) {
  $schema['node']['fields']['vkxp_sent'] = array(
    'definition' => 'Was sent to vk',
    'type' => 'int',
    'size' => 'tiny',
    'not null' => TRUE,
    'default' => 0,
  );
}