You are here

function sharedblocks_update_7002 in Shared Blocks 7.2

Drop the expiration and last_update columns from the sharedblocks table.

File

./sharedblocks.install, line 82
Install, update and uninstall functions for the sharedblocks module.

Code

function sharedblocks_update_7002() {
  if (db_field_exists('sharedblocks', 'expiration')) {
    db_drop_field('sharedblocks', 'expiration');
  }
  if (db_field_exists('sharedblocks', 'last_update')) {
    db_drop_field('sharedblocks', 'last_update');
  }
}