You are here

function imagecache_update_6001 in ImageCache 6.2

Make sure the schemas match, the weight should be signed.

File

./imagecache.install, line 318

Code

function imagecache_update_6001() {
  $ret = array();
  db_change_field($ret, 'imagecache_action', 'weight', 'weight', array(
    'type' => 'int',
    'not null' => TRUE,
    'default' => 0,
  ));
  return $ret;
}