function ad_notify_update_1 in Advertisement 5
Same name and namespace in other branches
- 5.2 notify/ad_notify.install \ad_notify_update_1()
File
- notify/
ad_notify.install, line 93
Code
function ad_notify_update_1() {
$ret = array();
switch ($GLOBALS['db_type']) {
default:
$ret[] = update_sql("ALTER TABLE {ad_notify} ADD aid INT(11) UNSIGNED NOT NULL DEFAULT '0'");
}
return $ret;
}