[ 'tempTable' => [ 'table' => 'revision_actor_temp', 'pk' => 'revactor_rev', 'field' => 'revactor_actor', 'joinPK' => 'rev_id', 'extra' => [ 'revactor_timestamp' => 'rev_timestamp', 'revactor_page' => 'rev_page', ], ] ], // Deprecated since 1.34 'ar_user' => [], // Deprecated since 1.34 'img_user' => [], // Deprecated since 1.34 'oi_user' => [], // Deprecated since 1.34 'fa_user' => [], // Deprecated since 1.34 'rc_user' => [], // Deprecated since 1.34 'log_user' => [], // Deprecated since 1.34 'ipb_by' => [ 'textField' => 'ipb_by_text', 'actorField' => 'ipb_by_actor' ] ]; /** * Static constructor * @return self */ public static function newMigration() { return MediaWikiServices::getInstance()->getActorMigration(); } /** * @internal * * @param int $stage * @param ActorStoreFactory $actorStoreFactory */ public function __construct( $stage, ActorStoreFactory $actorStoreFactory ) { parent::__construct( self::FIELD_INFOS, $stage, $actorStoreFactory ); } }