You are here

function ocupload_update_7202 in One Click Upload 7.2

Add new col {ocupload_templates}.filename

File

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

Code

function ocupload_update_7202() {
  db_add_field('ocupload_templates', 'filename', array(
    'description' => 'Filename',
    'type' => 'varchar',
    'length' => 255,
    'not null' => TRUE,
    'default' => '',
  ));
}