function shoutbox_update_6200 in Shoutbox 6.2
Same name and namespace in other branches
- 7.2 shoutbox.install \shoutbox_update_6200()
- 7 shoutbox.install \shoutbox_update_6200()
Update to 2.0
File
- ./
shoutbox.install, line 90 - Shoutbox module install file.
Code
function shoutbox_update_6200() {
$items = array();
$items[] = update_sql("ALTER TABLE {shoutbox} DROP url");
$items[] = update_sql("ALTER TABLE {shoutbox} MODIFY nick varchar(60)");
return $items;
}