diff options
author | Alexander Vorwerk <zabe@avorwerk.net> | 2023-05-27 23:36:26 +0200 |
---|---|---|
committer | Zabe <zabe@avorwerk.net> | 2023-05-27 21:59:26 +0000 |
commit | ef8d45fd12ebc187da72424c85a7f70b44fa91f4 (patch) | |
tree | 5420345e7e7176aef5ed4e0eec106664846d82d4 /includes/CommentStore/CommentStore.php | |
parent | e95c2ca5b74d3ca4db22081939c3422ed489e884 (diff) | |
download | mediawikicore-ef8d45fd12ebc187da72424c85a7f70b44fa91f4.tar.gz mediawikicore-ef8d45fd12ebc187da72424c85a7f70b44fa91f4.zip |
Migrate revision_comment_temp to rev_comment_id
Bug: T299954
Change-Id: If3224c73645d5ce5542228a6cee2848e98a9efee
Diffstat (limited to 'includes/CommentStore/CommentStore.php')
-rw-r--r-- | includes/CommentStore/CommentStore.php | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/includes/CommentStore/CommentStore.php b/includes/CommentStore/CommentStore.php index de4b997f427a..4f1f5001ce53 100644 --- a/includes/CommentStore/CommentStore.php +++ b/includes/CommentStore/CommentStore.php @@ -57,7 +57,7 @@ class CommentStore extends CommentStoreBase { 'pk' => 'revcomment_rev', 'field' => 'revcomment_comment_id', 'joinPK' => 'rev_id', - 'stage' => MIGRATION_OLD, + 'stage' => SCHEMA_COMPAT_WRITE_BOTH | SCHEMA_COMPAT_READ_NEW, 'deprecatedIn' => null, ], ]; |