drush:
  paths:
    config:
      - '${env.home}/.drush/config/drush.yml'
    include:
      - './drush/contrib'
options:
  uri: 'http://{{ projectname }}.docker.localhost:8000'
command:
  core:
    rsync:
      options:
        mode: 'rlDzq'
  sql:
    sync:
      options:
        structure-tables-key: 'common'
        skip-tables: 'common'
    dump:
      options:
        structure-tables-key: 'common'
        skip-tables: 'common'
sql:
  structure-tables:
    common:
{% for table in drush.sql.tables.structure %}
      - '{{ table }}'
{% endfor %}
  skip-tables:
    common:
{% for table in drush.sql.tables.skip %}
      - '{{ table }}'
{% endfor %}