function hosting_server_update_6005 in Hosting 7.4
Same name and namespace in other branches
- 6.2 server/hosting_server.install \hosting_server_update_6005()
- 7.3 server/hosting_server.install \hosting_server_update_6005()
Implements hook_update_N().
Rename the IP address table so that sites can also use it.
File
- server/
hosting_server.install, line 226 - Define the database schema and update functions for the hosting_server module.
Code
function hosting_server_update_6005() {
$ret = array();
db_rename_table($ret, 'hosting_server_ip', 'hosting_ip_addresses');
return $ret;
}