Drush SQL-Dump로 특정 테이블을 건너 뛰는 방법은 무엇입니까?
drush 구성 파일 ~ / .drush / drushrc.php가 있습니다. if (!isset($options['structure-tables']['common'])) { $options['structure-tables']['common'] = array( 'cache', 'cache_*', 'history', 'search_*', 'sessions', 'watchdog' ); } $options['structure-tables']['common'] = array_merge($options['structure-tables']['common'], array('ctools_css_cache', 'ctools_object_cache', 'logz', 'views_object_cache') ); 그리고 나는 bash 스크립트 파일을 가지고있다 : /usr/bin/drush sql-dump --root="/home/username/domains/sitename/www" --skip-tables-key="common" --gzip --result-file=/home/username/backup/$year/$month/dbname_$date_now_time.sql 그러나 그것을 실행할 때 백업 파일에는 …