You are here

function ocupload_update_7100 in One Click Upload 7.2

Same name and namespace in other branches
  1. 7 ocupload.install \ocupload_update_7100()

Add new col {ocupload_templates}.show_in_colorbox

File

./ocupload.install, line 185
One Click Upload install file.

Code

function ocupload_update_7100() {
  db_add_field('ocupload_templates', 'show_in_colorbox', array(
    'description' => '1 - show original image in colorbox, 0 - open in new page',
    'type' => 'int',
    'size' => 'tiny',
    'not null' => TRUE,
    'default' => 0,
  ));
}