pierre@0: . pierre@0: */ pierre@0: pierre@0: /** pierre@0: * Installation of the ad_weight_percent schema. pierre@0: */ pierre@0: function ad_weight_percent_install() { pierre@0: switch ($GLOBALS['db_type']) { pierre@0: case 'mysql': pierre@0: case 'mysqli': pierre@0: default: pierre@0: db_query("CREATE TABLE {ad_weight_percent} ( pierre@0: tid INT NOT NULL DEFAULT '0', pierre@0: aid INT NOT NULL DEFAULT '0', pierre@0: weight INT(3) NOT NULL DEFAULT '0', pierre@0: pierre@0: UNIQUE KEY (tid, aid))"); pierre@0: } pierre@0: } pierre@0: pierre@0: /** pierre@0: * Complete uninstallation of the ad_weight_percent module. pierre@0: */ pierre@0: function ad_weight_percent_uninstall() { pierre@0: // Remove tables. pierre@0: drupal_uninstall_schema('ad_weight_percent'); pierre@0: pierre@0: drupal_set_message('The ad_weight_percent module has been completely uninstalled.'); pierre@0: } pierre@0: