You are here

function ocupload_update_7102 in One Click Upload 7

Same name and namespace in other branches
  1. 7.2 ocupload.install \ocupload_update_7102()

Add new col {ocupload_templates}.image_style_original

File

./ocupload.install, line 196
Install/Uninstall functions

Code

function ocupload_update_7102() {
  db_add_field('ocupload_templates', 'image_style_original', array(
    'description' => 'Image style for original image',
    'type' => 'varchar',
    'length' => 50,
    'not null' => TRUE,
    'default' => '',
  ));
}