You are here

function role_watchdog_update_6131 in Role Watchdog 6

Same name and namespace in other branches
  1. 6.2 role_watchdog.install \role_watchdog_update_6131()

Add field to store history entry id in.

File

./role_watchdog.install, line 108
Install file for Role watchdog.

Code

function role_watchdog_update_6131() {
  $ret = array();
  $ret[] = update_sql("ALTER TABLE {role_watchdog} ADD `hid` INT( 10 ) UNSIGNED NOT NULL AUTO_INCREMENT PRIMARY KEY FIRST");
  return $ret;
}