function shoutbox_update_6201 in Shoutbox 6.2
Same name and namespace in other branches
- 7.2 shoutbox.install \shoutbox_update_6201()
- 7 shoutbox.install \shoutbox_update_6201()
Remove size restrictions on shout messages
File
- ./
shoutbox.install, line 100 - Shoutbox module install file.
Code
function shoutbox_update_6201() {
$items = array();
$items[] = update_sql("ALTER TABLE {shoutbox} MODIFY shout longtext NOT NULL");
return $items;
}