brian_d
brian_d

Reputation: 11395

module to safely delete obsolete drupal database tables


does anyone know of an existing module or script that will remove or identify obsolete tables in a drupal database?

The site has been upgraded from drupal 5 to 6 and 6 to 7. I know that there are many tables that are not in use or were not removed when uninstalling custom modules.

Thanks

Upvotes: 1

Views: 1156

Answers (1)

Matt V.
Matt V.

Reputation: 9809

The Schema module provides some useful reporting on mismatches between the schema that has been declared in your installed modules versus the schema as it exists in the database. That would be a good start in identifying obsolete tables.

Upvotes: 2

Related Questions