You are here

function ocupload_update_7101 in One Click Upload 7

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

Change col length {ocupload_templates}.path

File

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

Code

function ocupload_update_7101() {
  db_change_field('ocupload_templates', 'path', 'path', array(
    'description' => 'Upload path',
    'type' => 'varchar',
    'length' => 255,
    'not null' => TRUE,
    'default' => '',
  ));
}