function hosting_client_update_8 in Hostmaster (Aegir) 6
Add the hosting_client_platforms table and default all clients to have access to all platforms
File
- modules/
hosting/ client/ hosting_client.install, line 194 - Install, update and uninstall for the clients module.
Code
function hosting_client_update_8() {
$ret = array();
$ret[] = update_sql("CREATE TABLE {hosting_platform_client_access} \n (pid int(10) unsigned NOT NULL default '0', \n cid int(10) unsigned NOT NULL default '0')");
return $ret;
}