You are here

hosting_db_server.install in Hosting 5

File

db_server/hosting_db_server.install
View source
<?php

function hosting_db_server_install() {
  switch ($GLOBALS['db_type']) {
    case 'mysql':
    case 'mysqli':
      db_query("CREATE TABLE {hosting_db_server} (\n        vid int(10) unsigned NOT NULL default '0',\n        nid int(10) unsigned NOT NULL default '0',\n        db_type longtext NOT NULL, \n        db_user longtext NOT NULL,\n        db_passwd longtext NOT NULL,\n        PRIMARY KEY  (vid)\n      ) /*!40100 DEFAULT CHARACTER SET UTF8 */ ");
      break;
  }
}

Functions