You are here

function imagepicker_update_6201 in Image Picker 6.2

File

./imagepicker.install, line 243
imagepicker install, update and uninstall functions

Code

function imagepicker_update_6201() {
  $ret = array();
  $sql = "ALTER TABLE {imagepicker_user_groups} ADD `avail_roles` varchar(255) NOT NULL default 'all'";
  $ret[] = update_sql($sql);
  return $ret;
}