You are here

function hostingService_db_mysql::delete in Hostmaster (Aegir) 6

Overrides hostingService::delete

File

modules/hosting/db_server/hosting_db_server.service.inc, line 72
Provide the hosting serivce classes for database integration.

Class

hostingService_db_mysql
A MySQL specific db service implementation class.

Code

function delete() {
  parent::delete();
  db_query('DELETE FROM {hosting_db_server} WHERE nid = %d', $this->server->nid);
}