Can anybody please tell me in which table is the module (core, contributed and custom) details stored in mysql database (phpmyadmin) for drupal 8?

Comments

VM’s picture

I venture the answer depends on the details sought and the module in use.

AswathyAjish’s picture

In drupal 7, all the module details are stored in the table 'System' in phpmyadmin.

I want to know about the views module details in database.

VM’s picture

I'd first check the config table

AswathyAjish’s picture

Thank you for the response.

Actually my problem is :

I have a view in my D8 site which contains a title field. While clicking on the title field, for the 'Style Settings', when using any of the following, the 'HTML Element' drop down contain some default values.

Customize field HTML
Customize label HTML
Customize field and label wrapper HTML

I want to know where are these default HTML elements stored in database?

ravimane23’s picture

I also had same question as you.

When I searched more I found that the "key_value" table contains the details of all the modules.

Along with the above step please do some more steps like clear cache and all as mentioned in :- https://www.drupal.org/project/drupal/issues/1920484#comment-12670445

mmjvb’s picture

The table `key_value` contains a collection 'system.schema' with active modules. It records the highest number of hook_update_#. That information is used to determine which hooks to run upon update. 

damondt’s picture

Also data value in a row with named "core.extension" in table "config"

mdjamiruddin’s picture

Please let me know the steps to move a contributed module into custom in Drupal 8 to make it a custom module for customization.