Drupal - Clean Database

Is there a way to clear or clear the database of all incomplete records that were added by the modules that have since been deleted. Ive created my site, but added a lot of modules to swim with it, I didn’t delete all the ones that I don’t use, but just wonder if there is a way to clear the database, etc., to ensure that nothing remains behind?

thank

+3
source share
3 answers

If you have your own content that you want to save. And you used the uninstall function for all the modules you installed, then the only route is to check manually. if you don’t have a lot of content, you can export it and replace db with clean one, and then put your content in it.

+2
source

You can use the Schema module to detect the remaining tables from improperly deleted modules.

+2
source

You can also use the reinstall function of the DEVEL modules if you want to clear the database, but do not want to delete the module.

0
source

Source: https://habr.com/ru/post/1777731/


All Articles