function shrinktheweb_update_7000 in ShrinkTheWeb 7
This will update the shrinktheweb_log table from Drupal 6.x to its new format for Drupal 7.x
File
- ./
shrinktheweb.install, line 129
Code
function shrinktheweb_update_7000() {
$schema = shrinktheweb_schema();
db_drop_table('shrinktheweb_log');
db_create_table('shrinktheweb_log', $schema['shrinktheweb_log']);
}