def destroy_database(uri): """Destroy the database at ``uri``, if it exists. """ if database_exists(uri): drop_database(uri)