You are here

function imagecrop_update_3 in Image javascript crop 5

Same name and namespace in other branches
  1. 6 imagecrop.install \imagecrop_update_3()

Update 2 : Add extra field to imagecrop table

File

./imagecrop.install, line 88
Install file.

Code

function imagecrop_update_3() {
  $ret[] = db_query("ALTER TABLE {imagecrop} ADD scale VARCHAR( 10 ) NOT NULL DEFAULT 'original'");
  return array();
}