You are here

function i18n_block_update_7001 in Internationalization 7

Drop Drupal 6 {i18n_blocks} table after migration.

1 call to i18n_block_update_7001()
i18n_block_install in i18n_block/i18n_block.install
Implements hook_install().

File

i18n_block/i18n_block.install, line 105
Installation file for i18nblocks module.

Code

function i18n_block_update_7001() {
  if (db_table_exists('i18n_blocks')) {
    db_drop_table('i18n_blocks');
  }
}