You are here

function imagepicker_update_5103 in Image Picker 5.2

File

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

Code

function imagepicker_update_5103() {
  $ret = array();
  $sql = "ALTER TABLE {imagepicker_user_groups} ADD `public` tinyint(1) unsigned NOT NULL default '0'";
  $ret[] = update_sql($sql);
  return $ret;
}