diff options
Diffstat (limited to 'maintenance/storage/moveToExternal.php')
-rw-r--r-- | maintenance/storage/moveToExternal.php | 8 |
1 files changed, 7 insertions, 1 deletions
diff --git a/maintenance/storage/moveToExternal.php b/maintenance/storage/moveToExternal.php index 993aa64c..a8b2f93b 100644 --- a/maintenance/storage/moveToExternal.php +++ b/maintenance/storage/moveToExternal.php @@ -1,9 +1,15 @@ <?php +/** + * Move revision's text to external storage + * + * @file + * @ingroup Maintenance ExternalStorage + */ define( 'REPORTING_INTERVAL', 1 ); if ( !defined( 'MEDIAWIKI' ) ) { - $optionsWithArgs = array( 'm', 's' ); + $optionsWithArgs = array( 'e', 's' ); require_once( dirname(__FILE__) . '/../commandLine.inc' ); require_once( 'ExternalStoreDB.php' ); |