function block_class_update_6100 in Block Class 6
Same name and namespace in other branches
- 6.2 block_class.install \block_class_update_6100()
Alters the structure of {block_class} schema.
File
- ./
block_class.install, line 56 - Provides the (un)install and update logic for block_class.
Code
function block_class_update_6100() {
$ret = array();
// Removed. This schema update made new installations of post-6.x-1.3
// snapshots fail due to a too long primary key index. As many users updated
// to it anyway, the corrected schema change has been moved to
// block_class_update_6101() now.
return $ret;
}