You are here

function node_convert_update_6000 in Node Convert 6

File

./node_convert.install, line 39
The node_convert install file.

Code

function node_convert_update_6000() {
  $schema['node_convert_templates'] = array(
    'fields' => array(
      'nctid' => array(
        'type' => 'serial',
        'unsigned' => TRUE,
        'not null' => TRUE,
      ),
      'name' => array(
        'type' => 'text',
        'size' => 'small',
      ),
      'source_type' => array(
        'type' => 'text',
        'size' => 'small',
        'not null' => FALSE,
      ),
      'destination_type' => array(
        'type' => 'text',
        'size' => 'small',
        'not null' => TRUE,
      ),
      'data' => array(
        'type' => 'text',
        'size' => 'medium',
      ),
    ),
    'primary key' => array(
      'nctid',
    ),
  );
  $ret = array();
  db_create_table($ret, 'node_convert_templates', $schema['node_convert_templates']);
  return $ret;
}