You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: commands/sql/sqlsync.drush.inc
+8-2Lines changed: 8 additions & 2 deletions
Original file line number
Diff line number
Diff line change
@@ -47,7 +47,10 @@ function sqlsync_drush_command() {
47
47
'source-db-url' => 'Database specification for source system to dump from.',
48
48
'source-remote-port' => 'Override sql database port number in source-db-url. Optional.',
49
49
'source-remote-host' => 'Remote machine to run sql-dump file on. Optional; default is local machine.',
50
-
'source-dump' => 'The destination for the dump file, or the path to the dump file when --no-dump is specified. Format: "--source-dump=/dumpdir/db.sql"',
50
+
'source-dump' => array(
51
+
'description' => 'The destination for the dump file, or the path to the dump file when --no-dump is specified.',
52
+
'example-value' => '/dumpdir/db.sql',
53
+
),
51
54
'source-database' => 'A key in the $db_url (D6) or $databases (D7+) array which provides the data.',
52
55
'source-target' => array(
53
56
'description' => 'A key within the SOURCE database identifying a particular server in the database group.',
@@ -59,7 +62,10 @@ function sqlsync_drush_command() {
59
62
'target-db-url' => '',
60
63
'target-remote-port' => '',
61
64
'target-remote-host' => '',
62
-
'target-dump' => 'A path for saving the dump file on target. Mandatory when using --no-sync. Format: "--target-dump=/dumpdir/db.sql.gz"',
65
+
'target-dump' => array(
66
+
'description' => 'A path for saving the dump file on target. Mandatory when using --no-sync.',
67
+
'example-value' => '/dumpdir/db.sql.gz',
68
+
),
63
69
'target-database' => 'A key in the $db_url (D6) or $databases (D7+) array which shall receive the data.',
64
70
'target-target' => array(
65
71
'description' => 'Oy. A key within the TARGET database identifying a particular server in the database group.',
0 commit comments