This removes most of the pre-actor user and user_text columns, and the $wgActorTableSchemaMigrationStage setting that used to determine whether the columns were used. rev_user and rev_user_text remain in the code, as on Wikimedia wikis the revision table is too large to alter at this time. A future change will combine that with the removal of rev_comment, rev_content_model, and rev_content_format (and the addition of rev_comment_id and rev_actor). ActorMigration's constructor continues to take a $stage parameter, and continues to have the logic for handling it, for the benefit of extensions that might need their own migration process. Code using ActorMigration for accessing the core fields should be updated to use the new actor fields directly. That will be done for in a followup. Bug: T188327 Change-Id: Id35544b879af1cd708f3efd303fce8d9a1b9eb02
41 lines
1.7 KiB
PL/PgSQL
41 lines
1.7 KiB
PL/PgSQL
--
|
|
-- patch-logging-drop-log_user.sql
|
|
--
|
|
-- T188327. Drop old xx_user and xx_user_text fields, and defaults from xx_actor fields.
|
|
|
|
BEGIN;
|
|
|
|
DROP TABLE IF EXISTS /*_*/logging_tmp;
|
|
CREATE TABLE /*_*/logging_tmp (
|
|
log_id int unsigned NOT NULL PRIMARY KEY AUTO_INCREMENT,
|
|
log_type varbinary(32) NOT NULL default '',
|
|
log_action varbinary(32) NOT NULL default '',
|
|
log_timestamp binary(14) NOT NULL default '19700101000000',
|
|
log_actor bigint unsigned NOT NULL DEFAULT 0,
|
|
log_namespace int NOT NULL default 0,
|
|
log_title varchar(255) binary NOT NULL default '',
|
|
log_page int unsigned NULL,
|
|
log_comment_id bigint unsigned NOT NULL,
|
|
log_params blob NOT NULL,
|
|
log_deleted tinyint unsigned NOT NULL default 0
|
|
) /*$wgDBTableOptions*/;
|
|
|
|
INSERT OR IGNORE INTO /*_*/logging_tmp (
|
|
log_id, log_type, log_action, log_timestamp, log_actor,
|
|
log_namespace, log_title, log_page, log_comment_id, log_params, log_deleted
|
|
) SELECT
|
|
log_id, log_type, log_action, log_timestamp, log_actor,
|
|
log_namespace, log_title, log_page, log_comment_id, log_params, log_deleted
|
|
FROM /*_*/logging;
|
|
|
|
DROP TABLE /*_*/logging;
|
|
ALTER TABLE /*_*/logging_tmp RENAME TO /*_*/logging;
|
|
CREATE INDEX /*i*/type_time ON /*_*/logging (log_type, log_timestamp);
|
|
CREATE INDEX /*i*/actor_time ON /*_*/logging (log_actor, log_timestamp);
|
|
CREATE INDEX /*i*/page_time ON /*_*/logging (log_namespace, log_title, log_timestamp);
|
|
CREATE INDEX /*i*/times ON /*_*/logging (log_timestamp);
|
|
CREATE INDEX /*i*/log_actor_type_time ON /*_*/logging (log_actor, log_type, log_timestamp);
|
|
CREATE INDEX /*i*/log_page_id_time ON /*_*/logging (log_page,log_timestamp);
|
|
CREATE INDEX /*i*/log_type_action ON /*_*/logging (log_type, log_action, log_timestamp);
|
|
|
|
COMMIT;
|