You are here

function imagecrop_update_3 in Image javascript crop 6

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

Update 2 : Add extra field to imagecrop table

File

./imagecrop.install, line 64
Install file.

Code

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