You are here

function gathercontent_update_7302 in GatherContent 7.3

Add field `gathercontent_import_status` to `node` table.

File

./gathercontent.install, line 318

Code

function gathercontent_update_7302() {
  db_add_field('node', 'gathercontent_import_status', array(
    'definition' => 'The ID of content in GatherContent.',
    'type' => 'text',
  ));
}