You are here

function ocupload_update_7103 in One Click Upload 7

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

Add new col {ocupload_templates}.max_filesize

File

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

Code

function ocupload_update_7103() {
  db_add_field('ocupload_templates', 'max_filesize', array(
    'description' => 'Max filesize in bytes',
    'type' => 'int',
    'unsigned' => TRUE,
    'not null' => TRUE,
    'default' => 0,
  ));
}