function sharedblocks_update_7001 in Shared Blocks 7.2
Drop the block_data column from the sharedblocks table.
File
- ./
sharedblocks.install, line 73 - Install, update and uninstall functions for the sharedblocks module.
Code
function sharedblocks_update_7001() {
if (db_field_exists('sharedblocks', 'block_data')) {
db_drop_field('sharedblocks', 'block_data');
}
}