diff --git a/templates/drush.yml.twig b/templates/drush.yml.twig
index 19436a9e83e1c15d0d3a4a982e9929d5a61ae664..0553e3a8a982266eb2a794270b1e070490b3835b 100644
--- a/templates/drush.yml.twig
+++ b/templates/drush.yml.twig
@@ -9,11 +9,11 @@ command:
     options:
       structure-tables:
         common:
-          - 'cache'
-          - 'cache_*'
-          - 'history'
-          - 'search_*'
-          - 'sessions'
-          - 'watchdog'
+{% for table in drush.sql.tables.structure %}
+          - '{{ table }}'
+{% endfor %}
       skip-tables:
-        common: []
+        common:
+{% for table in drush.sql.tables.skip %}
+          - '{{ table }}'
+{% endfor %}