function subuser_update_6001 in Subuser 6
Implementation of hook_update_n() Adjusts the table name for the proper namespace.
File
- ./
subuser.install, line 85 - Provides database schema and uninstall cleanup.
Code
function subuser_update_6001() {
$return = array();
$return[] = update_sql("ALTER TABLE {user_relationship} RENAME TO {subuser_relationship}");
return $return;
}