You are here

function gathercontent_update_7305 in GatherContent 7.3

Add field `template` to `gathercontent_mapping` table.

File

./gathercontent.install, line 355

Code

function gathercontent_update_7305() {
  db_add_field('gathercontent_mapping', 'template', array(
    'type' => 'blob',
    'not null' => FALSE,
    'size' => 'big',
    'serialize' => TRUE,
  ));
}