ad_weight_percent.install in Advertisement 6.2
File
weight/percent/ad_weight_percent.install
View source
<?php
function ad_weight_percent_install() {
switch ($GLOBALS['db_type']) {
case 'mysql':
case 'mysqli':
default:
db_query("CREATE TABLE {ad_weight_percent} (\n tid INT NOT NULL DEFAULT '0',\n aid INT NOT NULL DEFAULT '0',\n weight INT(3) NOT NULL DEFAULT '0',\n\n UNIQUE KEY (tid, aid))");
}
}
function ad_weight_percent_uninstall() {
drupal_uninstall_schema('ad_weight_percent');
drupal_set_message(t('The ad_weight_percent module has been completely uninstalled.'));
}