You are here

function date_update_7200 in Date 7.3

Same name and namespace in other branches
  1. 7.2 date.install \date_update_7200()

The date_migrate_example module was renamed.

File

./date.install, line 326
Install, update and uninstall functions for the Date module.

Code

function date_update_7200() {
  db_delete('system')
    ->condition('name', 'date_migrate_example')
    ->execute();
}