You are here

function filefield_paths_update_7105 in File (Field) Paths 7

Correct the default value for {filefield_paths}.active_updating field.

File

./filefield_paths.install, line 123
Install, update and uninstall functions for the File (Field) Paths module.

Code

function filefield_paths_update_7105() {
  db_change_field('filefield_paths', 'active_updating', 'active_updating', array(
    'type' => 'int',
    'size' => 'tiny',
    'not null' => TRUE,
    'default' => 0,
  ));
}