As a followup to bug 31204, we should ensure that all user_options blobs are migrated to rows in the user_properties table
Version: unspecified
Severity: normal
As a followup to bug 31204, we should ensure that all user_options blobs are migrated to rows in the user_properties table
Version: unspecified
Severity: normal
Status | Subtype | Assigned | Task | ||
---|---|---|---|---|---|
Resolved | None | T33211 MediaWiki 1.19 post WMF deployment actions | |||
Open | Feature | None | T18660 Database table cleanup (tracking) | ||
Invalid | None | T33218 Run convertUserOptions on all Wikimedia Wikis |
We have the vague impression this may have already been done, but since we're going to drop the old user_options blob entirely in 1.19 (yay cleanup!) we should make sure. :)
enwiki:
mysql> select count(*) from user where user_options != '';
+----------+
count(*) |
+----------+
0 |
+----------+
1 row in set (18 min 21.46 sec)
I wonder if that means it has been, and we're safe to do nothing?
dewiki:
mysql> select count(*) from user where user_options != '';
+----------+
count(*) |
+----------+
0 |
+----------+
1 row in set (10.31 sec)
frwiki:
mysql> select count(*) from user where user_options != '';
+----------+
count(*) |
+----------+
0 |
+----------+
1 row in set (4.60 sec)
If these big wikis have all been done, I'm pretty sure that means everywhere has been...
Marking INVALID as there's nothing to actually be done