Skip to content
Snippets Groups Projects
drush.yml.twig 389 B
Newer Older
  • Learn to ignore specific revisions
  • drush:
      paths:
        include:
          - './drush/contrib'
    
    options:
    
      uri: 'http://{{ projectname }}.docker.localhost:8000'
    
    command:
      sql:
        options:
          structure-tables:
            common:
    
    {% for table in drush.sql.tables.structure %}
              - '{{ table }}'
    {% endfor %}
    
          skip-tables:
    
            common:
    {% for table in drush.sql.tables.skip %}
              - '{{ table }}'
    {% endfor %}