You are here

function content_type_overview_update_6100 in Content type overview 6

Same name and namespace in other branches
  1. 7 content_type_overview.install \content_type_overview_update_6100()

Implementation of hook_update_N().

File

./content_type_overview.install, line 21

Code

function content_type_overview_update_6100() {
  $ret = array();
  $ret[] = update_sql("UPDATE {system} SET weight = 99 WHERE name = 'content_type_overview'");
  return $ret;
}