[Wikidata-bugs] [Maniphest] T205094: Investigate and restructure SQL directory, and use new MediaWiki abstract schema change features

2020-10-07 Thread WMDE-leszek
WMDE-leszek added a comment.


  In T205094#6526147 , 
@Ladsgroup wrote:
  
  > 
  
  
  
  > I don't know if I understood you correctly but the abstract schema is going 
to help with finding drifts between production and dev code (T104459: Automate 
the check and fix of object, schema and data drifts between mediawiki HEAD, 
production masters and slaves ) 
since parsing json for automated checks across the lots of databases is much 
easier and more accurate than parsing sql 
.
 We are already working on it and potentially in the future, easy drift fixes 
for small wiki will be done automatically but for now, the abstract schema is 
extensively being used to report drifts (you can see for example our most 
recent adventure T260111: All sorts of random drifts in wikis in s3 
, for more, look at subtickets of 
the above ticket).
  
  Thanks, I was not aware that work on using this JSON schema definition to 
automate checks like this is happening. T104459 
 is not very clear about this. But 
good to know, this seems like a sensible direction.

TASK DETAIL
  https://phabricator.wikimedia.org/T205094

EMAIL PREFERENCES
  https://phabricator.wikimedia.org/settings/panel/emailpreferences/

To: Ladsgroup, WMDE-leszek
Cc: WMDE-leszek, Lucas_Werkmeister_WMDE, Izno, Michael, Ladsgroup, daniel, 
Addshore, Aklapper, Matthias_Geisler_WMDE, Jonas, Hazizibinmahdi, Akuckartz, 
Iflorez, darthmon_wmde, alaa_wmde, DannyS712, Nandana, Lahi, Gq86, Pablo-WMDE, 
GoranSMilovanovic, QZanden, LawExplorer, _jensen, rosalieper, Scott_WUaS, 
Wikidata-bugs, aude, Dinoguy1000, Lydia_Pintscher, Mbch331, Jay8g
___
Wikidata-bugs mailing list
Wikidata-bugs@lists.wikimedia.org
https://lists.wikimedia.org/mailman/listinfo/wikidata-bugs


[Wikidata-bugs] [Maniphest] T205094: Investigate and restructure SQL directory, and use new MediaWiki abstract schema change features

2020-10-07 Thread Ladsgroup
Ladsgroup added a comment.


  In T205094#6525519 , 
@WMDE-leszek wrote:
  
  > This seems to be finished. There is still a bunch questions I would have 
that this task does not seem to be explaining, e.g. how this "abstract schema" 
approach is guarding against production databases drifting from what the schema 
delivered with code prescribes - which seems to be called to as a reason for 
doing those changes; or what was the reasoning for introducing 
repo/sql/postgres files.
  >
  > But as this didn't seem to be an issue when the task was defined, I am 
closing this.
  
  I don't know if I understood you correctly but the abstract schema is going 
to help with finding drifts between production and dev code (T104459: Automate 
the check and fix of object, schema and data drifts between mediawiki HEAD, 
production masters and slaves ) 
since parsing json for automated checks across the lots of databases is much 
easier and more accurate than parsing sql 
.
 We are already working on it and potentially in the future, easy drift fixes 
for small wiki will be done automatically but for now, the abstract schema is 
extensively being used to report drifts (you can see for example our most 
recent adventure T260111: All sorts of random drifts in wikis in s3 
, for more, look at subtickets of 
the above ticket).
  
  The other point of having abstract schema is to have one source of truth, for 
example mediawiki core has different sql files for Postgres and MySQL and they 
look similar but they actually have drifted drastically (missing indexes, 
missing tables, etc., so far around 80 drifts have been fixed). The wikibase 
sql files are now generated automatically from one source of truth meaning they 
won't diverge (core even has tests for it now, we can write it for wikibase too)
  
  On a rather different topic: We will have abstract schema changes support in 
a couple of months (currently we have abstract schema but not abstract schema 
change), similar to what we have but you provide a json file (with snapshot of 
before and after of the abstract schema of the table) and it would produce the 
ALTER TABLES needed for each DBMS for you through a maintenance script.
  
  HTH

TASK DETAIL
  https://phabricator.wikimedia.org/T205094

EMAIL PREFERENCES
  https://phabricator.wikimedia.org/settings/panel/emailpreferences/

To: Ladsgroup
Cc: WMDE-leszek, Lucas_Werkmeister_WMDE, Izno, Michael, Ladsgroup, daniel, 
Addshore, Aklapper, Matthias_Geisler_WMDE, Jonas, Hazizibinmahdi, Akuckartz, 
Iflorez, darthmon_wmde, alaa_wmde, DannyS712, Nandana, Lahi, Gq86, Pablo-WMDE, 
GoranSMilovanovic, QZanden, LawExplorer, _jensen, rosalieper, Scott_WUaS, 
Wikidata-bugs, aude, Dinoguy1000, Lydia_Pintscher, Mbch331, Jay8g
___
Wikidata-bugs mailing list
Wikidata-bugs@lists.wikimedia.org
https://lists.wikimedia.org/mailman/listinfo/wikidata-bugs


[Wikidata-bugs] [Maniphest] T205094: Investigate and restructure SQL directory, and use new MediaWiki abstract schema change features

2020-10-07 Thread WMDE-leszek
WMDE-leszek updated the task description.

TASK DETAIL
  https://phabricator.wikimedia.org/T205094

EMAIL PREFERENCES
  https://phabricator.wikimedia.org/settings/panel/emailpreferences/

To: Ladsgroup, WMDE-leszek
Cc: WMDE-leszek, Lucas_Werkmeister_WMDE, Izno, Michael, Ladsgroup, daniel, 
Addshore, Aklapper, Matthias_Geisler_WMDE, Jonas, Hazizibinmahdi, Akuckartz, 
Iflorez, darthmon_wmde, alaa_wmde, DannyS712, Nandana, Lahi, Gq86, Pablo-WMDE, 
GoranSMilovanovic, QZanden, LawExplorer, _jensen, rosalieper, Scott_WUaS, 
Wikidata-bugs, aude, Dinoguy1000, Lydia_Pintscher, Mbch331, Jay8g
___
Wikidata-bugs mailing list
Wikidata-bugs@lists.wikimedia.org
https://lists.wikimedia.org/mailman/listinfo/wikidata-bugs


[Wikidata-bugs] [Maniphest] T205094: Investigate and restructure SQL directory, and use new MediaWiki abstract schema change features

2020-10-07 Thread Lucas_Werkmeister_WMDE
Lucas_Werkmeister_WMDE added a comment.


  We use abstract schemas for the initial table definitions, but not (as far as 
I’m aware) for generating schema changes… Amir, did you have any plans for that?

TASK DETAIL
  https://phabricator.wikimedia.org/T205094

EMAIL PREFERENCES
  https://phabricator.wikimedia.org/settings/panel/emailpreferences/

To: Ladsgroup, Lucas_Werkmeister_WMDE
Cc: WMDE-leszek, Lucas_Werkmeister_WMDE, Izno, Michael, Ladsgroup, daniel, 
Addshore, Aklapper, Matthias_Geisler_WMDE, Jonas, Hazizibinmahdi, Akuckartz, 
Iflorez, darthmon_wmde, alaa_wmde, DannyS712, Nandana, Lahi, Gq86, Pablo-WMDE, 
GoranSMilovanovic, QZanden, LawExplorer, _jensen, rosalieper, Scott_WUaS, 
Wikidata-bugs, aude, Dinoguy1000, Lydia_Pintscher, Mbch331, Jay8g
___
Wikidata-bugs mailing list
Wikidata-bugs@lists.wikimedia.org
https://lists.wikimedia.org/mailman/listinfo/wikidata-bugs


[Wikidata-bugs] [Maniphest] T205094: Investigate and restructure SQL directory, and use new MediaWiki abstract schema change features

2020-10-07 Thread WMDE-leszek
WMDE-leszek closed this task as "Resolved".
WMDE-leszek moved this task from Test (Verification) to Done on the 
Wikidata-Campsite (Wikidata-Campsite-Iteration-∞) board.
WMDE-leszek added a comment.


  This seems to be finished. There is still a bunch questions I would have that 
this task does not seem to be explaining, e.g. how this "abstract schema" 
approach is guarding against production databases drifting from what the schema 
delivered with code prescribes - which seems to be called to as a reason for 
doing those changes; or what was the reasoning for introducing 
repo/sql/postgres files.
  
  But as this didn't seem to be an issue when the task was defined, I am 
closing this.

TASK DETAIL
  https://phabricator.wikimedia.org/T205094

WORKBOARD
  https://phabricator.wikimedia.org/project/board/3539/

EMAIL PREFERENCES
  https://phabricator.wikimedia.org/settings/panel/emailpreferences/

To: Ladsgroup, WMDE-leszek
Cc: WMDE-leszek, Lucas_Werkmeister_WMDE, Izno, Michael, Ladsgroup, daniel, 
Addshore, Aklapper, Matthias_Geisler_WMDE, Jonas, Hazizibinmahdi, Akuckartz, 
Iflorez, darthmon_wmde, alaa_wmde, DannyS712, Nandana, Lahi, Gq86, Pablo-WMDE, 
GoranSMilovanovic, QZanden, LawExplorer, _jensen, rosalieper, Scott_WUaS, 
Wikidata-bugs, aude, Dinoguy1000, Lydia_Pintscher, Mbch331, Jay8g
___
Wikidata-bugs mailing list
Wikidata-bugs@lists.wikimedia.org
https://lists.wikimedia.org/mailman/listinfo/wikidata-bugs


[Wikidata-bugs] [Maniphest] T205094: Investigate and restructure SQL directory, and use new MediaWiki abstract schema change features

2020-09-24 Thread Michael
Michael removed a project: Patch-For-Review.

TASK DETAIL
  https://phabricator.wikimedia.org/T205094

EMAIL PREFERENCES
  https://phabricator.wikimedia.org/settings/panel/emailpreferences/

To: Ladsgroup, Michael
Cc: WMDE-leszek, Lucas_Werkmeister_WMDE, Izno, Michael, Ladsgroup, daniel, 
Addshore, Aklapper, Matthias_Geisler_WMDE, Jonas, Hazizibinmahdi, Akuckartz, 
Iflorez, darthmon_wmde, alaa_wmde, DannyS712, Nandana, Lahi, Gq86, Pablo-WMDE, 
GoranSMilovanovic, QZanden, LawExplorer, _jensen, rosalieper, Scott_WUaS, 
Wikidata-bugs, aude, Dinoguy1000, Lydia_Pintscher, Mbch331, Jay8g, Alter-paule, 
Beast1978, Un1tY, Hook696, Kent7301, joker88john, CucyNoiD, Gaboe420, 
Giuliamocci, Cpaulf30, Af420, Bsandipan, Lewizho99, Maathavan
___
Wikidata-bugs mailing list
Wikidata-bugs@lists.wikimedia.org
https://lists.wikimedia.org/mailman/listinfo/wikidata-bugs


[Wikidata-bugs] [Maniphest] T205094: Investigate and restructure SQL directory, and use new MediaWiki abstract schema change features

2020-09-23 Thread Ladsgroup
Ladsgroup moved this task from Peer Review to Test (Verification) on the 
Wikidata-Campsite (Wikidata-Campsite-Iteration-∞) board.
Ladsgroup added a comment.


  The only thing left is wb_terms and I assume this will be handled on the 
wb_terms clean up hike.

TASK DETAIL
  https://phabricator.wikimedia.org/T205094

WORKBOARD
  https://phabricator.wikimedia.org/project/board/3539/

EMAIL PREFERENCES
  https://phabricator.wikimedia.org/settings/panel/emailpreferences/

To: Ladsgroup
Cc: WMDE-leszek, Lucas_Werkmeister_WMDE, Izno, Michael, Ladsgroup, daniel, 
Addshore, Aklapper, Matthias_Geisler_WMDE, Jonas, Alter-paule, Hazizibinmahdi, 
Beast1978, Un1tY, Akuckartz, Hook696, Iflorez, darthmon_wmde, Kent7301, 
alaa_wmde, joker88john, DannyS712, CucyNoiD, Nandana, Gaboe420, Giuliamocci, 
Cpaulf30, Lahi, Gq86, Af420, Bsandipan, Pablo-WMDE, GoranSMilovanovic, QZanden, 
LawExplorer, Lewizho99, Maathavan, _jensen, rosalieper, Scott_WUaS, 
Wikidata-bugs, aude, Dinoguy1000, Lydia_Pintscher, Mbch331, Jay8g
___
Wikidata-bugs mailing list
Wikidata-bugs@lists.wikimedia.org
https://lists.wikimedia.org/mailman/listinfo/wikidata-bugs


[Wikidata-bugs] [Maniphest] T205094: Investigate and restructure SQL directory, and use new MediaWiki abstract schema change features

2020-09-23 Thread gerritbot
gerritbot added a comment.


  Change 628471 **merged** by jenkins-bot:
  [mediawiki/extensions/Wikibase@master] Rename changes_dispatch to 
wb_changes_dispatch
  
  https://gerrit.wikimedia.org/r/628471

TASK DETAIL
  https://phabricator.wikimedia.org/T205094

EMAIL PREFERENCES
  https://phabricator.wikimedia.org/settings/panel/emailpreferences/

To: Ladsgroup, gerritbot
Cc: WMDE-leszek, Lucas_Werkmeister_WMDE, Izno, Michael, Ladsgroup, daniel, 
Addshore, Aklapper, Matthias_Geisler_WMDE, Jonas, Alter-paule, Hazizibinmahdi, 
Beast1978, Un1tY, Akuckartz, Hook696, Iflorez, darthmon_wmde, Kent7301, 
alaa_wmde, joker88john, DannyS712, CucyNoiD, Nandana, Gaboe420, Giuliamocci, 
Cpaulf30, Lahi, Gq86, Af420, Bsandipan, Pablo-WMDE, GoranSMilovanovic, QZanden, 
LawExplorer, Lewizho99, Maathavan, _jensen, rosalieper, Scott_WUaS, 
Wikidata-bugs, aude, Dinoguy1000, Lydia_Pintscher, Mbch331, Jay8g
___
Wikidata-bugs mailing list
Wikidata-bugs@lists.wikimedia.org
https://lists.wikimedia.org/mailman/listinfo/wikidata-bugs


[Wikidata-bugs] [Maniphest] T205094: Investigate and restructure SQL directory, and use new MediaWiki abstract schema change features

2020-09-23 Thread gerritbot
gerritbot added a comment.


  Change 628470 **merged** by jenkins-bot:
  [mediawiki/extensions/Wikibase@master] Migrate wb_changes_dispatch to 
abstract schema
  
  https://gerrit.wikimedia.org/r/628470

TASK DETAIL
  https://phabricator.wikimedia.org/T205094

EMAIL PREFERENCES
  https://phabricator.wikimedia.org/settings/panel/emailpreferences/

To: Ladsgroup, gerritbot
Cc: WMDE-leszek, Lucas_Werkmeister_WMDE, Izno, Michael, Ladsgroup, daniel, 
Addshore, Aklapper, Matthias_Geisler_WMDE, Jonas, Alter-paule, Hazizibinmahdi, 
Beast1978, Un1tY, Akuckartz, Hook696, Iflorez, darthmon_wmde, Kent7301, 
alaa_wmde, joker88john, DannyS712, CucyNoiD, Nandana, Gaboe420, Giuliamocci, 
Cpaulf30, Lahi, Gq86, Af420, Bsandipan, Pablo-WMDE, GoranSMilovanovic, QZanden, 
LawExplorer, Lewizho99, Maathavan, _jensen, rosalieper, Scott_WUaS, 
Wikidata-bugs, aude, Dinoguy1000, Lydia_Pintscher, Mbch331, Jay8g
___
Wikidata-bugs mailing list
Wikidata-bugs@lists.wikimedia.org
https://lists.wikimedia.org/mailman/listinfo/wikidata-bugs


[Wikidata-bugs] [Maniphest] T205094: Investigate and restructure SQL directory, and use new MediaWiki abstract schema change features

2020-09-22 Thread ReleaseTaggerBot
ReleaseTaggerBot edited projects, added MW-1.36-notes (1.36.0-wmf.11; 
2020-09-29); removed MW-1.36-notes (1.36.0-wmf.10; 2020-09-22).

TASK DETAIL
  https://phabricator.wikimedia.org/T205094

EMAIL PREFERENCES
  https://phabricator.wikimedia.org/settings/panel/emailpreferences/

To: Ladsgroup, ReleaseTaggerBot
Cc: WMDE-leszek, Lucas_Werkmeister_WMDE, Izno, Michael, Ladsgroup, daniel, 
Addshore, Aklapper, Matthias_Geisler_WMDE, Jonas, Alter-paule, Hazizibinmahdi, 
Beast1978, Un1tY, Akuckartz, Hook696, Iflorez, darthmon_wmde, Kent7301, 
alaa_wmde, joker88john, DannyS712, CucyNoiD, Nandana, Gaboe420, Giuliamocci, 
Cpaulf30, Lahi, Gq86, Af420, Bsandipan, Pablo-WMDE, GoranSMilovanovic, QZanden, 
LawExplorer, Lewizho99, Maathavan, _jensen, rosalieper, Scott_WUaS, 
Wikidata-bugs, aude, Dinoguy1000, Lydia_Pintscher, Mbch331, Jay8g
___
Wikidata-bugs mailing list
Wikidata-bugs@lists.wikimedia.org
https://lists.wikimedia.org/mailman/listinfo/wikidata-bugs


[Wikidata-bugs] [Maniphest] T205094: Investigate and restructure SQL directory, and use new MediaWiki abstract schema change features

2020-09-22 Thread gerritbot
gerritbot added a comment.


  Change 628469 **merged** by jenkins-bot:
  [mediawiki/core@master] Improve TinyIntType
  
  https://gerrit.wikimedia.org/r/628469

TASK DETAIL
  https://phabricator.wikimedia.org/T205094

EMAIL PREFERENCES
  https://phabricator.wikimedia.org/settings/panel/emailpreferences/

To: Ladsgroup, gerritbot
Cc: WMDE-leszek, Lucas_Werkmeister_WMDE, Izno, Michael, Ladsgroup, daniel, 
Addshore, Aklapper, Matthias_Geisler_WMDE, Jonas, Alter-paule, Hazizibinmahdi, 
Beast1978, Un1tY, Akuckartz, Hook696, Iflorez, darthmon_wmde, Kent7301, 
alaa_wmde, joker88john, DannyS712, CucyNoiD, Nandana, Gaboe420, Giuliamocci, 
Cpaulf30, Lahi, Gq86, Af420, Bsandipan, Pablo-WMDE, GoranSMilovanovic, QZanden, 
LawExplorer, Lewizho99, Maathavan, _jensen, rosalieper, Scott_WUaS, 
Wikidata-bugs, aude, Dinoguy1000, Lydia_Pintscher, Mbch331, Jay8g
___
Wikidata-bugs mailing list
Wikidata-bugs@lists.wikimedia.org
https://lists.wikimedia.org/mailman/listinfo/wikidata-bugs


[Wikidata-bugs] [Maniphest] T205094: Investigate and restructure SQL directory, and use new MediaWiki abstract schema change features

2020-09-18 Thread gerritbot
gerritbot added a comment.


  Change 628471 had a related patch set uploaded (by Ladsgroup; owner: 
Ladsgroup):
  [mediawiki/extensions/Wikibase@master] Rename changes_dispatch to 
wb_changes_dispatch
  
  https://gerrit.wikimedia.org/r/628471

TASK DETAIL
  https://phabricator.wikimedia.org/T205094

EMAIL PREFERENCES
  https://phabricator.wikimedia.org/settings/panel/emailpreferences/

To: Ladsgroup, gerritbot
Cc: WMDE-leszek, Lucas_Werkmeister_WMDE, Izno, Michael, Ladsgroup, daniel, 
Addshore, Aklapper, Matthias_Geisler_WMDE, Jonas, Alter-paule, Hazizibinmahdi, 
Beast1978, Un1tY, Akuckartz, Hook696, Iflorez, darthmon_wmde, Kent7301, 
alaa_wmde, joker88john, DannyS712, CucyNoiD, Nandana, Gaboe420, Giuliamocci, 
Cpaulf30, Lahi, Gq86, Af420, Bsandipan, Pablo-WMDE, GoranSMilovanovic, QZanden, 
LawExplorer, Lewizho99, Maathavan, _jensen, rosalieper, Scott_WUaS, 
Wikidata-bugs, aude, Dinoguy1000, Lydia_Pintscher, Mbch331, Jay8g
___
Wikidata-bugs mailing list
Wikidata-bugs@lists.wikimedia.org
https://lists.wikimedia.org/mailman/listinfo/wikidata-bugs


[Wikidata-bugs] [Maniphest] T205094: Investigate and restructure SQL directory, and use new MediaWiki abstract schema change features

2020-09-18 Thread gerritbot
gerritbot added a comment.


  Change 628470 had a related patch set uploaded (by Ladsgroup; owner: 
Ladsgroup):
  [mediawiki/extensions/Wikibase@master] Migrate wb_changes_dispatch to 
abstract schema
  
  https://gerrit.wikimedia.org/r/628470

TASK DETAIL
  https://phabricator.wikimedia.org/T205094

EMAIL PREFERENCES
  https://phabricator.wikimedia.org/settings/panel/emailpreferences/

To: Ladsgroup, gerritbot
Cc: WMDE-leszek, Lucas_Werkmeister_WMDE, Izno, Michael, Ladsgroup, daniel, 
Addshore, Aklapper, Matthias_Geisler_WMDE, Jonas, Alter-paule, Hazizibinmahdi, 
Beast1978, Un1tY, Akuckartz, Hook696, Iflorez, darthmon_wmde, Kent7301, 
alaa_wmde, joker88john, DannyS712, CucyNoiD, Nandana, Gaboe420, Giuliamocci, 
Cpaulf30, Lahi, Gq86, Af420, Bsandipan, Pablo-WMDE, GoranSMilovanovic, QZanden, 
LawExplorer, Lewizho99, Maathavan, _jensen, rosalieper, Scott_WUaS, 
Wikidata-bugs, aude, Dinoguy1000, Lydia_Pintscher, Mbch331, Jay8g
___
Wikidata-bugs mailing list
Wikidata-bugs@lists.wikimedia.org
https://lists.wikimedia.org/mailman/listinfo/wikidata-bugs


[Wikidata-bugs] [Maniphest] T205094: Investigate and restructure SQL directory, and use new MediaWiki abstract schema change features

2020-09-18 Thread gerritbot
gerritbot added a comment.


  Change 628469 had a related patch set uploaded (by Ladsgroup; owner: 
Ladsgroup):
  [mediawiki/core@master] Improve TinyIntType
  
  https://gerrit.wikimedia.org/r/628469

TASK DETAIL
  https://phabricator.wikimedia.org/T205094

EMAIL PREFERENCES
  https://phabricator.wikimedia.org/settings/panel/emailpreferences/

To: Ladsgroup, gerritbot
Cc: WMDE-leszek, Lucas_Werkmeister_WMDE, Izno, Michael, Ladsgroup, daniel, 
Addshore, Aklapper, Matthias_Geisler_WMDE, Jonas, Alter-paule, Hazizibinmahdi, 
Beast1978, Un1tY, Akuckartz, Hook696, Iflorez, darthmon_wmde, Kent7301, 
alaa_wmde, joker88john, DannyS712, CucyNoiD, Nandana, Gaboe420, Giuliamocci, 
Cpaulf30, Lahi, Gq86, Af420, Bsandipan, Pablo-WMDE, GoranSMilovanovic, QZanden, 
LawExplorer, Lewizho99, Maathavan, _jensen, rosalieper, Scott_WUaS, 
Wikidata-bugs, aude, Dinoguy1000, Lydia_Pintscher, Mbch331, Jay8g
___
Wikidata-bugs mailing list
Wikidata-bugs@lists.wikimedia.org
https://lists.wikimedia.org/mailman/listinfo/wikidata-bugs


[Wikidata-bugs] [Maniphest] T205094: Investigate and restructure SQL directory, and use new MediaWiki abstract schema change features

2020-09-18 Thread Ladsgroup
Ladsgroup moved this task from Stalled/Waiting to Doing on the 
Wikidata-Campsite (Wikidata-Campsite-Iteration-∞) board.
Ladsgroup added a comment.


  In T205094#6466818 , 
@Michael wrote:
  
  > Added (default?) 2 week due date to see if 
https://gerrit.wikimedia.org/r/c/mediawiki/core/+/626854 is merged, then we can 
proceed as described above (T205094#6460185 
).
  
  It's merged now, picking it up again.

TASK DETAIL
  https://phabricator.wikimedia.org/T205094

WORKBOARD
  https://phabricator.wikimedia.org/project/board/3539/

EMAIL PREFERENCES
  https://phabricator.wikimedia.org/settings/panel/emailpreferences/

To: Ladsgroup
Cc: WMDE-leszek, Lucas_Werkmeister_WMDE, Izno, Michael, Ladsgroup, daniel, 
Addshore, Aklapper, Matthias_Geisler_WMDE, Jonas, Alter-paule, Hazizibinmahdi, 
Beast1978, Un1tY, Akuckartz, Hook696, Iflorez, darthmon_wmde, Kent7301, 
alaa_wmde, joker88john, DannyS712, CucyNoiD, Nandana, Gaboe420, Giuliamocci, 
Cpaulf30, Lahi, Gq86, Af420, Bsandipan, Pablo-WMDE, GoranSMilovanovic, QZanden, 
LawExplorer, Lewizho99, Maathavan, _jensen, rosalieper, Scott_WUaS, 
Wikidata-bugs, aude, Dinoguy1000, Lydia_Pintscher, Mbch331, Jay8g
___
Wikidata-bugs mailing list
Wikidata-bugs@lists.wikimedia.org
https://lists.wikimedia.org/mailman/listinfo/wikidata-bugs


[Wikidata-bugs] [Maniphest] T205094: Investigate and restructure SQL directory, and use new MediaWiki abstract schema change features

2020-09-16 Thread Michael
Michael added a comment.


  Added (default?) 2 week due date to see if 
https://gerrit.wikimedia.org/r/c/mediawiki/core/+/626854 is merged, then we can 
proceed as described above (T205094#6460185 
).

TASK DETAIL
  https://phabricator.wikimedia.org/T205094

EMAIL PREFERENCES
  https://phabricator.wikimedia.org/settings/panel/emailpreferences/

To: Ladsgroup, Michael
Cc: WMDE-leszek, Lucas_Werkmeister_WMDE, Izno, Michael, Ladsgroup, daniel, 
Addshore, Aklapper, Matthias_Geisler_WMDE, Jonas, Alter-paule, Hazizibinmahdi, 
Beast1978, Un1tY, Akuckartz, Hook696, Iflorez, darthmon_wmde, Kent7301, 
alaa_wmde, joker88john, DannyS712, CucyNoiD, Nandana, Gaboe420, Giuliamocci, 
Cpaulf30, Lahi, Gq86, Af420, Bsandipan, Pablo-WMDE, GoranSMilovanovic, QZanden, 
LawExplorer, Lewizho99, Maathavan, _jensen, rosalieper, Scott_WUaS, 
Wikidata-bugs, aude, Dinoguy1000, Lydia_Pintscher, Mbch331, Jay8g
___
Wikidata-bugs mailing list
Wikidata-bugs@lists.wikimedia.org
https://lists.wikimedia.org/mailman/listinfo/wikidata-bugs


[Wikidata-bugs] [Maniphest] T205094: Investigate and restructure SQL directory, and use new MediaWiki abstract schema change features

2020-09-16 Thread Michael
Michael set Due Date to Wed, Sep 30, 12:00 AM.

TASK DETAIL
  https://phabricator.wikimedia.org/T205094

EMAIL PREFERENCES
  https://phabricator.wikimedia.org/settings/panel/emailpreferences/

To: Ladsgroup, Michael
Cc: WMDE-leszek, Lucas_Werkmeister_WMDE, Izno, Michael, Ladsgroup, daniel, 
Addshore, Aklapper, Matthias_Geisler_WMDE, Jonas, Alter-paule, Hazizibinmahdi, 
Beast1978, Un1tY, Akuckartz, Hook696, Iflorez, darthmon_wmde, Kent7301, 
alaa_wmde, joker88john, DannyS712, CucyNoiD, Nandana, Gaboe420, Giuliamocci, 
Cpaulf30, Lahi, Gq86, Af420, Bsandipan, Pablo-WMDE, GoranSMilovanovic, QZanden, 
LawExplorer, Lewizho99, Maathavan, _jensen, rosalieper, Scott_WUaS, 
Wikidata-bugs, aude, Dinoguy1000, Lydia_Pintscher, Mbch331, Jay8g
___
Wikidata-bugs mailing list
Wikidata-bugs@lists.wikimedia.org
https://lists.wikimedia.org/mailman/listinfo/wikidata-bugs


[Wikidata-bugs] [Maniphest] T205094: Investigate and restructure SQL directory, and use new MediaWiki abstract schema change features

2020-09-16 Thread Ladsgroup
Ladsgroup moved this task from Peer Review to Stalled/Waiting on the 
Wikidata-Campsite (Wikidata-Campsite-Iteration-∞) board.
Ladsgroup added a comment.


  Now waiting on the core patch getting merged so we can pick up 
wb_changes_dispatch and dropping wb_terms.

TASK DETAIL
  https://phabricator.wikimedia.org/T205094

WORKBOARD
  https://phabricator.wikimedia.org/project/board/3539/

EMAIL PREFERENCES
  https://phabricator.wikimedia.org/settings/panel/emailpreferences/

To: Ladsgroup
Cc: WMDE-leszek, Lucas_Werkmeister_WMDE, Izno, Michael, Ladsgroup, daniel, 
Addshore, Aklapper, Matthias_Geisler_WMDE, Jonas, Alter-paule, Hazizibinmahdi, 
Beast1978, Un1tY, Akuckartz, Hook696, Iflorez, darthmon_wmde, Kent7301, 
alaa_wmde, joker88john, DannyS712, CucyNoiD, Nandana, Gaboe420, Giuliamocci, 
Cpaulf30, Lahi, Gq86, Af420, Bsandipan, Pablo-WMDE, GoranSMilovanovic, QZanden, 
LawExplorer, Lewizho99, Maathavan, _jensen, rosalieper, Scott_WUaS, 
Wikidata-bugs, aude, Dinoguy1000, Lydia_Pintscher, Mbch331, Jay8g
___
Wikidata-bugs mailing list
Wikidata-bugs@lists.wikimedia.org
https://lists.wikimedia.org/mailman/listinfo/wikidata-bugs


[Wikidata-bugs] [Maniphest] T205094: Investigate and restructure SQL directory, and use new MediaWiki abstract schema change features

2020-09-16 Thread gerritbot
gerritbot added a comment.


  Change 627836 **merged** by jenkins-bot:
  [mediawiki/extensions/Wikibase@master] Rename changes_* schema files
  
  https://gerrit.wikimedia.org/r/627836

TASK DETAIL
  https://phabricator.wikimedia.org/T205094

EMAIL PREFERENCES
  https://phabricator.wikimedia.org/settings/panel/emailpreferences/

To: Ladsgroup, gerritbot
Cc: WMDE-leszek, Lucas_Werkmeister_WMDE, Izno, Michael, Ladsgroup, daniel, 
Addshore, Aklapper, Matthias_Geisler_WMDE, Jonas, Alter-paule, Hazizibinmahdi, 
Beast1978, Un1tY, Akuckartz, Hook696, Iflorez, darthmon_wmde, Kent7301, 
alaa_wmde, joker88john, DannyS712, CucyNoiD, Nandana, Gaboe420, Giuliamocci, 
Cpaulf30, Lahi, Gq86, Af420, Bsandipan, Pablo-WMDE, GoranSMilovanovic, QZanden, 
LawExplorer, Lewizho99, Maathavan, _jensen, rosalieper, Scott_WUaS, 
Wikidata-bugs, aude, Dinoguy1000, Lydia_Pintscher, Mbch331, Jay8g
___
Wikidata-bugs mailing list
Wikidata-bugs@lists.wikimedia.org
https://lists.wikimedia.org/mailman/listinfo/wikidata-bugs


[Wikidata-bugs] [Maniphest] T205094: Investigate and restructure SQL directory, and use new MediaWiki abstract schema change features

2020-09-16 Thread gerritbot
gerritbot added a comment.


  Change 627836 had a related patch set uploaded (by Ladsgroup; owner: 
Ladsgroup):
  [mediawiki/extensions/Wikibase@master] Rename changes_* schema files
  
  https://gerrit.wikimedia.org/r/627836

TASK DETAIL
  https://phabricator.wikimedia.org/T205094

EMAIL PREFERENCES
  https://phabricator.wikimedia.org/settings/panel/emailpreferences/

To: Ladsgroup, gerritbot
Cc: WMDE-leszek, Lucas_Werkmeister_WMDE, Izno, Michael, Ladsgroup, daniel, 
Addshore, Aklapper, Matthias_Geisler_WMDE, Jonas, Alter-paule, Hazizibinmahdi, 
Beast1978, Un1tY, Akuckartz, Hook696, Iflorez, darthmon_wmde, Kent7301, 
alaa_wmde, joker88john, DannyS712, CucyNoiD, Nandana, Gaboe420, Giuliamocci, 
Cpaulf30, Lahi, Gq86, Af420, Bsandipan, Pablo-WMDE, GoranSMilovanovic, QZanden, 
LawExplorer, Lewizho99, Maathavan, _jensen, rosalieper, Scott_WUaS, 
Wikidata-bugs, aude, Dinoguy1000, Lydia_Pintscher, Mbch331, Jay8g
___
Wikidata-bugs mailing list
Wikidata-bugs@lists.wikimedia.org
https://lists.wikimedia.org/mailman/listinfo/wikidata-bugs


[Wikidata-bugs] [Maniphest] T205094: Investigate and restructure SQL directory, and use new MediaWiki abstract schema change features

2020-09-16 Thread gerritbot
gerritbot added a comment.


  Change 627347 **merged** by jenkins-bot:
  [mediawiki/extensions/Wikibase@master] Migrate wb_changes table to abstract 
schema
  
  https://gerrit.wikimedia.org/r/627347

TASK DETAIL
  https://phabricator.wikimedia.org/T205094

EMAIL PREFERENCES
  https://phabricator.wikimedia.org/settings/panel/emailpreferences/

To: Ladsgroup, gerritbot
Cc: WMDE-leszek, Lucas_Werkmeister_WMDE, Izno, Michael, Ladsgroup, daniel, 
Addshore, Aklapper, Matthias_Geisler_WMDE, Jonas, Alter-paule, Hazizibinmahdi, 
Beast1978, Un1tY, Akuckartz, Hook696, Iflorez, darthmon_wmde, Kent7301, 
alaa_wmde, joker88john, DannyS712, CucyNoiD, Nandana, Gaboe420, Giuliamocci, 
Cpaulf30, Lahi, Gq86, Af420, Bsandipan, Pablo-WMDE, GoranSMilovanovic, QZanden, 
LawExplorer, Lewizho99, Maathavan, _jensen, rosalieper, Scott_WUaS, 
Wikidata-bugs, aude, Dinoguy1000, Lydia_Pintscher, Mbch331, Jay8g
___
Wikidata-bugs mailing list
Wikidata-bugs@lists.wikimedia.org
https://lists.wikimedia.org/mailman/listinfo/wikidata-bugs


[Wikidata-bugs] [Maniphest] T205094: Investigate and restructure SQL directory, and use new MediaWiki abstract schema change features

2020-09-16 Thread gerritbot
gerritbot added a comment.


  Change 627285 **merged** by jenkins-bot:
  [mediawiki/extensions/Wikibase@master] Migrate wb_changes_subscription to 
abstract schema
  
  https://gerrit.wikimedia.org/r/627285

TASK DETAIL
  https://phabricator.wikimedia.org/T205094

EMAIL PREFERENCES
  https://phabricator.wikimedia.org/settings/panel/emailpreferences/

To: Ladsgroup, gerritbot
Cc: WMDE-leszek, Lucas_Werkmeister_WMDE, Izno, Michael, Ladsgroup, daniel, 
Addshore, Aklapper, Matthias_Geisler_WMDE, Jonas, Alter-paule, Hazizibinmahdi, 
Beast1978, Un1tY, Akuckartz, Hook696, Iflorez, darthmon_wmde, Kent7301, 
alaa_wmde, joker88john, DannyS712, CucyNoiD, Nandana, Gaboe420, Giuliamocci, 
Cpaulf30, Lahi, Gq86, Af420, Bsandipan, Pablo-WMDE, GoranSMilovanovic, QZanden, 
LawExplorer, Lewizho99, Maathavan, _jensen, rosalieper, Scott_WUaS, 
Wikidata-bugs, aude, Dinoguy1000, Lydia_Pintscher, Mbch331, Jay8g
___
Wikidata-bugs mailing list
Wikidata-bugs@lists.wikimedia.org
https://lists.wikimedia.org/mailman/listinfo/wikidata-bugs


[Wikidata-bugs] [Maniphest] T205094: Investigate and restructure SQL directory, and use new MediaWiki abstract schema change features

2020-09-16 Thread gerritbot
gerritbot added a comment.


  Change 627281 **merged** by jenkins-bot:
  [mediawiki/extensions/Wikibase@master] Migrate wb_items_per_site to abstract 
schema
  
  https://gerrit.wikimedia.org/r/627281

TASK DETAIL
  https://phabricator.wikimedia.org/T205094

EMAIL PREFERENCES
  https://phabricator.wikimedia.org/settings/panel/emailpreferences/

To: Ladsgroup, gerritbot
Cc: WMDE-leszek, Lucas_Werkmeister_WMDE, Izno, Michael, Ladsgroup, daniel, 
Addshore, Aklapper, Matthias_Geisler_WMDE, Jonas, Alter-paule, Hazizibinmahdi, 
Beast1978, Un1tY, Akuckartz, Hook696, Iflorez, darthmon_wmde, Kent7301, 
alaa_wmde, joker88john, DannyS712, CucyNoiD, Nandana, Gaboe420, Giuliamocci, 
Cpaulf30, Lahi, Gq86, Af420, Bsandipan, Pablo-WMDE, GoranSMilovanovic, QZanden, 
LawExplorer, Lewizho99, Maathavan, _jensen, rosalieper, Scott_WUaS, 
Wikidata-bugs, aude, Dinoguy1000, Lydia_Pintscher, Mbch331, Jay8g
___
Wikidata-bugs mailing list
Wikidata-bugs@lists.wikimedia.org
https://lists.wikimedia.org/mailman/listinfo/wikidata-bugs


[Wikidata-bugs] [Maniphest] T205094: Investigate and restructure SQL directory, and use new MediaWiki abstract schema change features

2020-09-15 Thread ReleaseTaggerBot
ReleaseTaggerBot edited projects, added MW-1.36-notes (1.36.0-wmf.10; 
2020-09-22); removed MW-1.36-notes (1.36.0-wmf.9; 2020-09-15).

TASK DETAIL
  https://phabricator.wikimedia.org/T205094

EMAIL PREFERENCES
  https://phabricator.wikimedia.org/settings/panel/emailpreferences/

To: Ladsgroup, ReleaseTaggerBot
Cc: WMDE-leszek, Lucas_Werkmeister_WMDE, Izno, Michael, Ladsgroup, daniel, 
Addshore, Aklapper, Matthias_Geisler_WMDE, Jonas, Alter-paule, Hazizibinmahdi, 
Beast1978, Un1tY, Akuckartz, Hook696, Iflorez, darthmon_wmde, Kent7301, 
alaa_wmde, joker88john, DannyS712, CucyNoiD, Nandana, Gaboe420, Giuliamocci, 
Cpaulf30, Lahi, Gq86, Af420, Bsandipan, Pablo-WMDE, GoranSMilovanovic, QZanden, 
LawExplorer, Lewizho99, Maathavan, _jensen, rosalieper, Scott_WUaS, 
Wikidata-bugs, aude, Dinoguy1000, Lydia_Pintscher, Mbch331, Jay8g
___
Wikidata-bugs mailing list
Wikidata-bugs@lists.wikimedia.org
https://lists.wikimedia.org/mailman/listinfo/wikidata-bugs


[Wikidata-bugs] [Maniphest] T205094: Investigate and restructure SQL directory, and use new MediaWiki abstract schema change features

2020-09-15 Thread gerritbot
gerritbot added a comment.


  Change 627277 **merged** by jenkins-bot:
  [mediawiki/extensions/Wikibase@master] Migrate wb_id_counters to abstract 
schema
  
  https://gerrit.wikimedia.org/r/627277

TASK DETAIL
  https://phabricator.wikimedia.org/T205094

EMAIL PREFERENCES
  https://phabricator.wikimedia.org/settings/panel/emailpreferences/

To: Ladsgroup, gerritbot
Cc: WMDE-leszek, Lucas_Werkmeister_WMDE, Izno, Michael, Ladsgroup, daniel, 
Addshore, Aklapper, Matthias_Geisler_WMDE, Jonas, Alter-paule, Hazizibinmahdi, 
Beast1978, Un1tY, Akuckartz, Hook696, Iflorez, darthmon_wmde, Kent7301, 
alaa_wmde, joker88john, DannyS712, CucyNoiD, Nandana, Gaboe420, Giuliamocci, 
Cpaulf30, Lahi, Gq86, Af420, Bsandipan, Pablo-WMDE, GoranSMilovanovic, QZanden, 
LawExplorer, Lewizho99, Maathavan, _jensen, rosalieper, Scott_WUaS, 
Wikidata-bugs, aude, Dinoguy1000, Lydia_Pintscher, Mbch331, Jay8g
___
Wikidata-bugs mailing list
Wikidata-bugs@lists.wikimedia.org
https://lists.wikimedia.org/mailman/listinfo/wikidata-bugs


[Wikidata-bugs] [Maniphest] T205094: Investigate and restructure SQL directory, and use new MediaWiki abstract schema change features

2020-09-14 Thread Ladsgroup
Ladsgroup moved this task from Doing to Peer Review on the Wikidata-Campsite 
(Wikidata-Campsite-Iteration-∞) board.
Ladsgroup added a comment.


  This is mostly done, All tables are migrated except two:
  
  - wb_terms, it has some complexities (float data type) that is not yet doable 
in abstract schema. We can wait for core to implement it (which hopefully 
happen in a month or two) or just wait until we remove wb_terms altogether.
  - wb_changes_dispatch: It's waiting for timestamp data type getting handled 
properly in core (https://gerrit.wikimedia.org/r/c/mediawiki/core/+/626854)
  
  Once these are done, we should clean up the file names but that's easy.

TASK DETAIL
  https://phabricator.wikimedia.org/T205094

WORKBOARD
  https://phabricator.wikimedia.org/project/board/3539/

EMAIL PREFERENCES
  https://phabricator.wikimedia.org/settings/panel/emailpreferences/

To: Ladsgroup
Cc: WMDE-leszek, Lucas_Werkmeister_WMDE, Izno, Michael, Ladsgroup, daniel, 
Addshore, Aklapper, Matthias_Geisler_WMDE, Jonas, Alter-paule, Hazizibinmahdi, 
Beast1978, Un1tY, Akuckartz, Hook696, Iflorez, darthmon_wmde, Kent7301, 
alaa_wmde, joker88john, DannyS712, CucyNoiD, Nandana, Gaboe420, Giuliamocci, 
Cpaulf30, Lahi, Gq86, Af420, Bsandipan, Pablo-WMDE, GoranSMilovanovic, QZanden, 
LawExplorer, Lewizho99, Maathavan, _jensen, rosalieper, Scott_WUaS, 
Wikidata-bugs, aude, Dinoguy1000, Lydia_Pintscher, Mbch331, Jay8g
___
Wikidata-bugs mailing list
Wikidata-bugs@lists.wikimedia.org
https://lists.wikimedia.org/mailman/listinfo/wikidata-bugs


[Wikidata-bugs] [Maniphest] T205094: Investigate and restructure SQL directory, and use new MediaWiki abstract schema change features

2020-09-14 Thread gerritbot
gerritbot added a comment.


  Change 627347 had a related patch set uploaded (by Ladsgroup; owner: 
Ladsgroup):
  [mediawiki/extensions/Wikibase@master] Migrate wb_changes table to abstract 
schema
  
  https://gerrit.wikimedia.org/r/627347

TASK DETAIL
  https://phabricator.wikimedia.org/T205094

EMAIL PREFERENCES
  https://phabricator.wikimedia.org/settings/panel/emailpreferences/

To: Ladsgroup, gerritbot
Cc: WMDE-leszek, Lucas_Werkmeister_WMDE, Izno, Michael, Ladsgroup, daniel, 
Addshore, Aklapper, Matthias_Geisler_WMDE, Jonas, Alter-paule, Hazizibinmahdi, 
Beast1978, Un1tY, Akuckartz, Hook696, Iflorez, darthmon_wmde, Kent7301, 
alaa_wmde, joker88john, DannyS712, CucyNoiD, Nandana, Gaboe420, Giuliamocci, 
Cpaulf30, Lahi, Gq86, Af420, Bsandipan, Pablo-WMDE, GoranSMilovanovic, QZanden, 
LawExplorer, Lewizho99, Maathavan, _jensen, rosalieper, Scott_WUaS, 
Wikidata-bugs, aude, Dinoguy1000, Lydia_Pintscher, Mbch331, Jay8g
___
Wikidata-bugs mailing list
Wikidata-bugs@lists.wikimedia.org
https://lists.wikimedia.org/mailman/listinfo/wikidata-bugs


[Wikidata-bugs] [Maniphest] T205094: Investigate and restructure SQL directory, and use new MediaWiki abstract schema change features

2020-09-14 Thread gerritbot
gerritbot added a comment.


  Change 627285 had a related patch set uploaded (by Ladsgroup; owner: 
Ladsgroup):
  [mediawiki/extensions/Wikibase@master] Migrate wb_changes_subscription to 
abstract schema
  
  https://gerrit.wikimedia.org/r/627285

TASK DETAIL
  https://phabricator.wikimedia.org/T205094

EMAIL PREFERENCES
  https://phabricator.wikimedia.org/settings/panel/emailpreferences/

To: Ladsgroup, gerritbot
Cc: WMDE-leszek, Lucas_Werkmeister_WMDE, Izno, Michael, Ladsgroup, daniel, 
Addshore, Aklapper, Matthias_Geisler_WMDE, Jonas, Alter-paule, Hazizibinmahdi, 
Beast1978, Un1tY, Akuckartz, Hook696, Iflorez, darthmon_wmde, Kent7301, 
alaa_wmde, joker88john, DannyS712, CucyNoiD, Nandana, Gaboe420, Giuliamocci, 
Cpaulf30, Lahi, Gq86, Af420, Bsandipan, Pablo-WMDE, GoranSMilovanovic, QZanden, 
LawExplorer, Lewizho99, Maathavan, _jensen, rosalieper, Scott_WUaS, 
Wikidata-bugs, aude, Dinoguy1000, Lydia_Pintscher, Mbch331, Jay8g
___
Wikidata-bugs mailing list
Wikidata-bugs@lists.wikimedia.org
https://lists.wikimedia.org/mailman/listinfo/wikidata-bugs


[Wikidata-bugs] [Maniphest] T205094: Investigate and restructure SQL directory, and use new MediaWiki abstract schema change features

2020-09-14 Thread gerritbot
gerritbot added a comment.


  Change 627281 had a related patch set uploaded (by Ladsgroup; owner: 
Ladsgroup):
  [mediawiki/extensions/Wikibase@master] Migrate wb_items_per_site to abstract 
schema
  
  https://gerrit.wikimedia.org/r/627281

TASK DETAIL
  https://phabricator.wikimedia.org/T205094

EMAIL PREFERENCES
  https://phabricator.wikimedia.org/settings/panel/emailpreferences/

To: Ladsgroup, gerritbot
Cc: WMDE-leszek, Lucas_Werkmeister_WMDE, Izno, Michael, Ladsgroup, daniel, 
Addshore, Aklapper, Matthias_Geisler_WMDE, Jonas, Alter-paule, Hazizibinmahdi, 
Beast1978, Un1tY, Akuckartz, Hook696, Iflorez, darthmon_wmde, Kent7301, 
alaa_wmde, joker88john, DannyS712, CucyNoiD, Nandana, Gaboe420, Giuliamocci, 
Cpaulf30, Lahi, Gq86, Af420, Bsandipan, Pablo-WMDE, GoranSMilovanovic, QZanden, 
LawExplorer, Lewizho99, Maathavan, _jensen, rosalieper, Scott_WUaS, 
Wikidata-bugs, aude, Dinoguy1000, Lydia_Pintscher, Mbch331, Jay8g
___
Wikidata-bugs mailing list
Wikidata-bugs@lists.wikimedia.org
https://lists.wikimedia.org/mailman/listinfo/wikidata-bugs


[Wikidata-bugs] [Maniphest] T205094: Investigate and restructure SQL directory, and use new MediaWiki abstract schema change features

2020-09-14 Thread gerritbot
gerritbot added a comment.


  Change 627277 had a related patch set uploaded (by Ladsgroup; owner: 
Ladsgroup):
  [mediawiki/extensions/Wikibase@master] Migrate wb_id_counters to abstract 
schema
  
  https://gerrit.wikimedia.org/r/627277

TASK DETAIL
  https://phabricator.wikimedia.org/T205094

EMAIL PREFERENCES
  https://phabricator.wikimedia.org/settings/panel/emailpreferences/

To: Ladsgroup, gerritbot
Cc: WMDE-leszek, Lucas_Werkmeister_WMDE, Izno, Michael, Ladsgroup, daniel, 
Addshore, Aklapper, Matthias_Geisler_WMDE, Jonas, Alter-paule, Hazizibinmahdi, 
Beast1978, Un1tY, Akuckartz, Hook696, Iflorez, darthmon_wmde, Kent7301, 
alaa_wmde, joker88john, DannyS712, CucyNoiD, Nandana, Gaboe420, Giuliamocci, 
Cpaulf30, Lahi, Gq86, Af420, Bsandipan, Pablo-WMDE, GoranSMilovanovic, QZanden, 
LawExplorer, Lewizho99, Maathavan, _jensen, rosalieper, Scott_WUaS, 
Wikidata-bugs, aude, Dinoguy1000, Lydia_Pintscher, Mbch331, Jay8g
___
Wikidata-bugs mailing list
Wikidata-bugs@lists.wikimedia.org
https://lists.wikimedia.org/mailman/listinfo/wikidata-bugs


[Wikidata-bugs] [Maniphest] T205094: Investigate and restructure SQL directory, and use new MediaWiki abstract schema change features

2020-09-14 Thread ReleaseTaggerBot
ReleaseTaggerBot edited projects, added MW-1.36-notes (1.36.0-wmf.9; 
2020-09-15); removed MW-1.36-notes (1.36.0-wmf.6; 2020-08-25).

TASK DETAIL
  https://phabricator.wikimedia.org/T205094

EMAIL PREFERENCES
  https://phabricator.wikimedia.org/settings/panel/emailpreferences/

To: Ladsgroup, ReleaseTaggerBot
Cc: WMDE-leszek, Lucas_Werkmeister_WMDE, Izno, Michael, Ladsgroup, daniel, 
Addshore, Aklapper, Matthias_Geisler_WMDE, Jonas, Alter-paule, Hazizibinmahdi, 
Beast1978, Un1tY, Akuckartz, Hook696, Iflorez, darthmon_wmde, Kent7301, 
alaa_wmde, joker88john, DannyS712, CucyNoiD, Nandana, Gaboe420, Giuliamocci, 
Cpaulf30, Lahi, Gq86, Af420, Bsandipan, Pablo-WMDE, GoranSMilovanovic, QZanden, 
LawExplorer, Lewizho99, Maathavan, _jensen, rosalieper, Scott_WUaS, 
Wikidata-bugs, aude, Dinoguy1000, Lydia_Pintscher, Mbch331, Jay8g
___
Wikidata-bugs mailing list
Wikidata-bugs@lists.wikimedia.org
https://lists.wikimedia.org/mailman/listinfo/wikidata-bugs


[Wikidata-bugs] [Maniphest] T205094: Investigate and restructure SQL directory, and use new MediaWiki abstract schema change features

2020-09-14 Thread gerritbot
gerritbot added a comment.


  Change 622659 **merged** by jenkins-bot:
  [mediawiki/extensions/Wikibase@master] Move changes_* files out of sql 
archives
  
  https://gerrit.wikimedia.org/r/622659

TASK DETAIL
  https://phabricator.wikimedia.org/T205094

EMAIL PREFERENCES
  https://phabricator.wikimedia.org/settings/panel/emailpreferences/

To: Ladsgroup, gerritbot
Cc: WMDE-leszek, Lucas_Werkmeister_WMDE, Izno, Michael, Ladsgroup, daniel, 
Addshore, Aklapper, Matthias_Geisler_WMDE, Jonas, Alter-paule, Hazizibinmahdi, 
Beast1978, Un1tY, Akuckartz, Hook696, Iflorez, darthmon_wmde, Kent7301, 
alaa_wmde, joker88john, DannyS712, CucyNoiD, Nandana, Gaboe420, Giuliamocci, 
Cpaulf30, Lahi, Gq86, Af420, Bsandipan, Pablo-WMDE, GoranSMilovanovic, QZanden, 
LawExplorer, Lewizho99, Maathavan, _jensen, rosalieper, Scott_WUaS, 
Wikidata-bugs, aude, Dinoguy1000, Lydia_Pintscher, Mbch331, Jay8g
___
Wikidata-bugs mailing list
Wikidata-bugs@lists.wikimedia.org
https://lists.wikimedia.org/mailman/listinfo/wikidata-bugs


[Wikidata-bugs] [Maniphest] T205094: Investigate and restructure SQL directory, and use new MediaWiki abstract schema change features

2020-09-07 Thread Ladsgroup
Ladsgroup merged a task: T259411: Migrate Wikibase to the abstract schema.

TASK DETAIL
  https://phabricator.wikimedia.org/T205094

EMAIL PREFERENCES
  https://phabricator.wikimedia.org/settings/panel/emailpreferences/

To: Ladsgroup
Cc: WMDE-leszek, Lucas_Werkmeister_WMDE, Izno, Michael, Ladsgroup, daniel, 
Addshore, Aklapper, Matthias_Geisler_WMDE, Jonas, Alter-paule, Hazizibinmahdi, 
Beast1978, Un1tY, Akuckartz, Hook696, Iflorez, darthmon_wmde, Kent7301, 
alaa_wmde, joker88john, DannyS712, CucyNoiD, Nandana, Gaboe420, Giuliamocci, 
Cpaulf30, Lahi, Gq86, Af420, Bsandipan, Pablo-WMDE, GoranSMilovanovic, QZanden, 
LawExplorer, Lewizho99, Maathavan, _jensen, rosalieper, Scott_WUaS, 
Wikidata-bugs, aude, Dinoguy1000, Lydia_Pintscher, Mbch331, Jay8g
___
Wikidata-bugs mailing list
Wikidata-bugs@lists.wikimedia.org
https://lists.wikimedia.org/mailman/listinfo/wikidata-bugs


[Wikidata-bugs] [Maniphest] T205094: Investigate and restructure SQL directory, and use new MediaWiki abstract schema change features

2020-09-07 Thread Ladsgroup
Ladsgroup moved this task from To Do to Peer Review on the Wikidata-Campsite 
(Wikidata-Campsite-Iteration-∞) board.
Ladsgroup claimed this task.
Ladsgroup added a comment.


  This patch needs review ^ :D

TASK DETAIL
  https://phabricator.wikimedia.org/T205094

WORKBOARD
  https://phabricator.wikimedia.org/project/board/3539/

EMAIL PREFERENCES
  https://phabricator.wikimedia.org/settings/panel/emailpreferences/

To: Ladsgroup
Cc: WMDE-leszek, Lucas_Werkmeister_WMDE, Izno, Michael, Ladsgroup, daniel, 
Addshore, Aklapper, Matthias_Geisler_WMDE, Jonas, Alter-paule, Hazizibinmahdi, 
Beast1978, Un1tY, Akuckartz, Hook696, Iflorez, darthmon_wmde, Kent7301, 
alaa_wmde, joker88john, DannyS712, CucyNoiD, Nandana, Gaboe420, Giuliamocci, 
Cpaulf30, Lahi, Gq86, Af420, Bsandipan, Pablo-WMDE, GoranSMilovanovic, QZanden, 
LawExplorer, Lewizho99, Maathavan, _jensen, rosalieper, Scott_WUaS, 
Wikidata-bugs, aude, Dinoguy1000, Lydia_Pintscher, Mbch331, Jay8g
___
Wikidata-bugs mailing list
Wikidata-bugs@lists.wikimedia.org
https://lists.wikimedia.org/mailman/listinfo/wikidata-bugs


[Wikidata-bugs] [Maniphest] T205094: Investigate and restructure SQL directory, and use new MediaWiki abstract schema change features

2020-08-26 Thread gerritbot
gerritbot added a comment.


  Change 622659 had a related patch set uploaded (by Ladsgroup; owner: 
Ladsgroup):
  [mediawiki/extensions/Wikibase@master] Move changes_* files out of sql 
archives
  
  https://gerrit.wikimedia.org/r/622659

TASK DETAIL
  https://phabricator.wikimedia.org/T205094

EMAIL PREFERENCES
  https://phabricator.wikimedia.org/settings/panel/emailpreferences/

To: gerritbot
Cc: WMDE-leszek, Lucas_Werkmeister_WMDE, Izno, Michael, Ladsgroup, daniel, 
Addshore, Aklapper, Matthias_Geisler_WMDE, Jonas, Alter-paule, Hazizibinmahdi, 
Beast1978, Un1tY, Akuckartz, Hook696, Iflorez, darthmon_wmde, Kent7301, 
alaa_wmde, joker88john, DannyS712, CucyNoiD, Nandana, Gaboe420, Giuliamocci, 
Cpaulf30, Lahi, Gq86, Af420, Bsandipan, Pablo-WMDE, GoranSMilovanovic, QZanden, 
LawExplorer, Lewizho99, Maathavan, _jensen, rosalieper, Scott_WUaS, 
Wikidata-bugs, aude, Dinoguy1000, Lydia_Pintscher, Mbch331, Jay8g
___
Wikidata-bugs mailing list
Wikidata-bugs@lists.wikimedia.org
https://lists.wikimedia.org/mailman/listinfo/wikidata-bugs


[Wikidata-bugs] [Maniphest] T205094: Investigate and restructure SQL directory, and use new MediaWiki abstract schema change features

2020-08-25 Thread Addshore
Addshore removed Ladsgroup as the assignee of this task.

TASK DETAIL
  https://phabricator.wikimedia.org/T205094

EMAIL PREFERENCES
  https://phabricator.wikimedia.org/settings/panel/emailpreferences/

To: Addshore
Cc: Lucas_Werkmeister_WMDE, Izno, Michael, Ladsgroup, daniel, Addshore, 
Aklapper, Matthias_Geisler_WMDE, Jonas, Alter-paule, Hazizibinmahdi, Beast1978, 
Un1tY, Akuckartz, Hook696, Iflorez, darthmon_wmde, Kent7301, alaa_wmde, 
joker88john, DannyS712, CucyNoiD, Nandana, Gaboe420, Giuliamocci, Cpaulf30, 
Lahi, Gq86, Af420, Bsandipan, Pablo-WMDE, GoranSMilovanovic, QZanden, 
LawExplorer, Lewizho99, Maathavan, _jensen, rosalieper, Scott_WUaS, 
Wikidata-bugs, aude, Dinoguy1000, Lydia_Pintscher, Mbch331, Jay8g
___
Wikidata-bugs mailing list
Wikidata-bugs@lists.wikimedia.org
https://lists.wikimedia.org/mailman/listinfo/wikidata-bugs


[Wikidata-bugs] [Maniphest] T205094: Investigate and restructure SQL directory, and use new MediaWiki abstract schema change features

2020-08-25 Thread Addshore
Addshore updated the task description.

TASK DETAIL
  https://phabricator.wikimedia.org/T205094

EMAIL PREFERENCES
  https://phabricator.wikimedia.org/settings/panel/emailpreferences/

To: Ladsgroup, Addshore
Cc: Lucas_Werkmeister_WMDE, Izno, Michael, Ladsgroup, daniel, Addshore, 
Aklapper, Matthias_Geisler_WMDE, Jonas, Alter-paule, Hazizibinmahdi, Beast1978, 
Un1tY, Akuckartz, Hook696, Iflorez, darthmon_wmde, Kent7301, alaa_wmde, 
joker88john, DannyS712, CucyNoiD, Nandana, Gaboe420, Giuliamocci, Cpaulf30, 
Lahi, Gq86, Af420, Bsandipan, Pablo-WMDE, GoranSMilovanovic, QZanden, 
LawExplorer, Lewizho99, Maathavan, _jensen, rosalieper, Scott_WUaS, 
Wikidata-bugs, aude, Dinoguy1000, Lydia_Pintscher, Mbch331, Jay8g
___
Wikidata-bugs mailing list
Wikidata-bugs@lists.wikimedia.org
https://lists.wikimedia.org/mailman/listinfo/wikidata-bugs


[Wikidata-bugs] [Maniphest] T205094: Investigate and restructure SQL directory, and use new MediaWiki abstract schema change features

2020-08-25 Thread Addshore
Addshore updated the task description.

TASK DETAIL
  https://phabricator.wikimedia.org/T205094

EMAIL PREFERENCES
  https://phabricator.wikimedia.org/settings/panel/emailpreferences/

To: Ladsgroup, Addshore
Cc: Lucas_Werkmeister_WMDE, Izno, Michael, Ladsgroup, daniel, Addshore, 
Aklapper, Matthias_Geisler_WMDE, Jonas, Alter-paule, Hazizibinmahdi, Beast1978, 
Un1tY, Akuckartz, Hook696, Iflorez, darthmon_wmde, Kent7301, alaa_wmde, 
joker88john, DannyS712, CucyNoiD, Nandana, Gaboe420, Giuliamocci, Cpaulf30, 
Lahi, Gq86, Af420, Bsandipan, Pablo-WMDE, GoranSMilovanovic, QZanden, 
LawExplorer, Lewizho99, Maathavan, _jensen, rosalieper, Scott_WUaS, 
Wikidata-bugs, aude, Dinoguy1000, Lydia_Pintscher, Mbch331, Jay8g
___
Wikidata-bugs mailing list
Wikidata-bugs@lists.wikimedia.org
https://lists.wikimedia.org/mailman/listinfo/wikidata-bugs


[Wikidata-bugs] [Maniphest] T205094: Investigate and restructure SQL directory, and use new MediaWiki abstract schema change features

2020-08-25 Thread Addshore
Addshore updated the task description.

TASK DETAIL
  https://phabricator.wikimedia.org/T205094

EMAIL PREFERENCES
  https://phabricator.wikimedia.org/settings/panel/emailpreferences/

To: Ladsgroup, Addshore
Cc: Lucas_Werkmeister_WMDE, Izno, Michael, Ladsgroup, daniel, Addshore, 
Aklapper, Matthias_Geisler_WMDE, Jonas, Alter-paule, Hazizibinmahdi, Beast1978, 
Un1tY, Akuckartz, Hook696, Iflorez, darthmon_wmde, Kent7301, alaa_wmde, 
joker88john, DannyS712, CucyNoiD, Nandana, Gaboe420, Giuliamocci, Cpaulf30, 
Lahi, Gq86, Af420, Bsandipan, Pablo-WMDE, GoranSMilovanovic, QZanden, 
LawExplorer, Lewizho99, Maathavan, _jensen, rosalieper, Scott_WUaS, 
Wikidata-bugs, aude, Dinoguy1000, Lydia_Pintscher, Mbch331, Jay8g
___
Wikidata-bugs mailing list
Wikidata-bugs@lists.wikimedia.org
https://lists.wikimedia.org/mailman/listinfo/wikidata-bugs


[Wikidata-bugs] [Maniphest] T205094: Investigate and restructure SQL directory, and use new MediaWiki abstract schema change features

2020-08-24 Thread Lucas_Werkmeister_WMDE
Lucas_Werkmeister_WMDE moved this task from Peer Review to To Do on the 
Wikidata-Campsite (Wikidata-Campsite-Iteration-∞) board.
Lucas_Werkmeister_WMDE added a comment.


  Goes back to TODO, I guess, for futher schema migrations.

TASK DETAIL
  https://phabricator.wikimedia.org/T205094

WORKBOARD
  https://phabricator.wikimedia.org/project/board/3539/

EMAIL PREFERENCES
  https://phabricator.wikimedia.org/settings/panel/emailpreferences/

To: Ladsgroup, Lucas_Werkmeister_WMDE
Cc: Lucas_Werkmeister_WMDE, Izno, Michael, Ladsgroup, daniel, Addshore, 
Aklapper, Matthias_Geisler_WMDE, Jonas, Alter-paule, Hazizibinmahdi, Beast1978, 
Un1tY, Akuckartz, Hook696, Iflorez, darthmon_wmde, Kent7301, alaa_wmde, 
joker88john, DannyS712, CucyNoiD, Nandana, Gaboe420, Giuliamocci, Cpaulf30, 
Lahi, Gq86, Af420, Bsandipan, Pablo-WMDE, GoranSMilovanovic, QZanden, 
LawExplorer, Lewizho99, Maathavan, _jensen, rosalieper, Scott_WUaS, 
Wikidata-bugs, aude, Dinoguy1000, Lydia_Pintscher, Mbch331, Jay8g
___
Wikidata-bugs mailing list
Wikidata-bugs@lists.wikimedia.org
https://lists.wikimedia.org/mailman/listinfo/wikidata-bugs


[Wikidata-bugs] [Maniphest] T205094: Investigate and restructure SQL directory, and use new MediaWiki abstract schema change features

2020-08-22 Thread gerritbot
gerritbot added a comment.


  Change 621921 **merged** by jenkins-bot:
  [mediawiki/extensions/WikimediaMaintenance@master] Fix 
createExtensionTables.php for moved sql files in Wikibase
  
  https://gerrit.wikimedia.org/r/621921

TASK DETAIL
  https://phabricator.wikimedia.org/T205094

EMAIL PREFERENCES
  https://phabricator.wikimedia.org/settings/panel/emailpreferences/

To: Ladsgroup, gerritbot
Cc: Lucas_Werkmeister_WMDE, Izno, Michael, Ladsgroup, daniel, Addshore, 
Aklapper, Matthias_Geisler_WMDE, Jonas, Alter-paule, Hazizibinmahdi, Beast1978, 
Un1tY, Akuckartz, Hook696, Iflorez, darthmon_wmde, Kent7301, alaa_wmde, 
joker88john, DannyS712, CucyNoiD, Nandana, Gaboe420, Giuliamocci, Cpaulf30, 
Lahi, Gq86, Af420, Bsandipan, Pablo-WMDE, GoranSMilovanovic, QZanden, 
LawExplorer, Lewizho99, Maathavan, _jensen, rosalieper, Scott_WUaS, 
Wikidata-bugs, aude, Dinoguy1000, Lydia_Pintscher, Mbch331, Jay8g
___
Wikidata-bugs mailing list
Wikidata-bugs@lists.wikimedia.org
https://lists.wikimedia.org/mailman/listinfo/wikidata-bugs


[Wikidata-bugs] [Maniphest] T205094: Investigate and restructure SQL directory, and use new MediaWiki abstract schema change features

2020-08-22 Thread gerritbot
gerritbot added a comment.


  Change 621921 had a related patch set uploaded (by Ladsgroup; owner: 
Ladsgroup):
  [mediawiki/extensions/WikimediaMaintenance@master] Fix 
createExtensionTables.php for moved sql files in Wikibase
  
  https://gerrit.wikimedia.org/r/621921

TASK DETAIL
  https://phabricator.wikimedia.org/T205094

EMAIL PREFERENCES
  https://phabricator.wikimedia.org/settings/panel/emailpreferences/

To: Ladsgroup, gerritbot
Cc: Lucas_Werkmeister_WMDE, Izno, Michael, Ladsgroup, daniel, Addshore, 
Aklapper, Matthias_Geisler_WMDE, Jonas, Alter-paule, Hazizibinmahdi, Beast1978, 
Un1tY, Akuckartz, Hook696, Iflorez, darthmon_wmde, Kent7301, alaa_wmde, 
joker88john, DannyS712, CucyNoiD, Nandana, Gaboe420, Giuliamocci, Cpaulf30, 
Lahi, Gq86, Af420, Bsandipan, Pablo-WMDE, GoranSMilovanovic, QZanden, 
LawExplorer, Lewizho99, Maathavan, _jensen, rosalieper, Scott_WUaS, 
Wikidata-bugs, aude, Dinoguy1000, Lydia_Pintscher, Mbch331, Jay8g
___
Wikidata-bugs mailing list
Wikidata-bugs@lists.wikimedia.org
https://lists.wikimedia.org/mailman/listinfo/wikidata-bugs


[Wikidata-bugs] [Maniphest] T205094: Investigate and restructure SQL directory, and use new MediaWiki abstract schema change features

2020-08-22 Thread gerritbot
gerritbot added a comment.


  Change 621911 **merged** by jenkins-bot:
  [mediawiki/extensions/WikimediaMaintenance@master] Fix addWiki.php for moved 
sql files in Wikibase
  
  https://gerrit.wikimedia.org/r/621911

TASK DETAIL
  https://phabricator.wikimedia.org/T205094

EMAIL PREFERENCES
  https://phabricator.wikimedia.org/settings/panel/emailpreferences/

To: Ladsgroup, gerritbot
Cc: Lucas_Werkmeister_WMDE, Izno, Michael, Ladsgroup, daniel, Addshore, 
Aklapper, Matthias_Geisler_WMDE, Jonas, Alter-paule, Hazizibinmahdi, Beast1978, 
Un1tY, Akuckartz, Hook696, Iflorez, darthmon_wmde, Kent7301, alaa_wmde, 
joker88john, DannyS712, CucyNoiD, Nandana, Gaboe420, Giuliamocci, Cpaulf30, 
Lahi, Gq86, Af420, Bsandipan, Pablo-WMDE, GoranSMilovanovic, QZanden, 
LawExplorer, Lewizho99, Maathavan, _jensen, rosalieper, Scott_WUaS, 
Wikidata-bugs, aude, Dinoguy1000, Lydia_Pintscher, Mbch331, Jay8g
___
Wikidata-bugs mailing list
Wikidata-bugs@lists.wikimedia.org
https://lists.wikimedia.org/mailman/listinfo/wikidata-bugs


[Wikidata-bugs] [Maniphest] T205094: Investigate and restructure SQL directory, and use new MediaWiki abstract schema change features

2020-08-22 Thread gerritbot
gerritbot added a comment.


  Change 621911 had a related patch set uploaded (by Ladsgroup; owner: 
Ladsgroup):
  [mediawiki/extensions/WikimediaMaintenance@master] Fix addWiki.php for moved 
sql files in Wikibase
  
  https://gerrit.wikimedia.org/r/621911

TASK DETAIL
  https://phabricator.wikimedia.org/T205094

EMAIL PREFERENCES
  https://phabricator.wikimedia.org/settings/panel/emailpreferences/

To: Ladsgroup, gerritbot
Cc: Lucas_Werkmeister_WMDE, Izno, Michael, Ladsgroup, daniel, Addshore, 
Aklapper, Matthias_Geisler_WMDE, Jonas, Alter-paule, Hazizibinmahdi, Beast1978, 
Un1tY, Akuckartz, Hook696, Iflorez, darthmon_wmde, Kent7301, alaa_wmde, 
joker88john, DannyS712, CucyNoiD, Nandana, Gaboe420, Giuliamocci, Cpaulf30, 
Lahi, Gq86, Af420, Bsandipan, Pablo-WMDE, GoranSMilovanovic, QZanden, 
LawExplorer, Lewizho99, Maathavan, _jensen, rosalieper, Scott_WUaS, 
Wikidata-bugs, aude, Dinoguy1000, Lydia_Pintscher, Mbch331, Jay8g
___
Wikidata-bugs mailing list
Wikidata-bugs@lists.wikimedia.org
https://lists.wikimedia.org/mailman/listinfo/wikidata-bugs


[Wikidata-bugs] [Maniphest] T205094: Investigate and restructure SQL directory, and use new MediaWiki abstract schema change features

2020-08-21 Thread gerritbot
gerritbot added a comment.


  Change 621717 **merged** by jenkins-bot:
  [mediawiki/extensions/Wikibase@master] Rename AddNormalizedTermsTablesDDL to 
term_store
  
  https://gerrit.wikimedia.org/r/621717

TASK DETAIL
  https://phabricator.wikimedia.org/T205094

EMAIL PREFERENCES
  https://phabricator.wikimedia.org/settings/panel/emailpreferences/

To: Ladsgroup, gerritbot
Cc: Lucas_Werkmeister_WMDE, Izno, Michael, Ladsgroup, daniel, Addshore, 
Aklapper, Matthias_Geisler_WMDE, Jonas, Alter-paule, Hazizibinmahdi, Beast1978, 
Un1tY, Akuckartz, Hook696, Iflorez, darthmon_wmde, Kent7301, alaa_wmde, 
joker88john, DannyS712, CucyNoiD, Nandana, Gaboe420, Giuliamocci, Cpaulf30, 
Lahi, Gq86, Af420, Bsandipan, Pablo-WMDE, GoranSMilovanovic, QZanden, 
LawExplorer, Lewizho99, Maathavan, _jensen, rosalieper, Scott_WUaS, 
Wikidata-bugs, aude, Dinoguy1000, Lydia_Pintscher, Mbch331, Jay8g
___
Wikidata-bugs mailing list
Wikidata-bugs@lists.wikimedia.org
https://lists.wikimedia.org/mailman/listinfo/wikidata-bugs


[Wikidata-bugs] [Maniphest] T205094: Investigate and restructure SQL directory, and use new MediaWiki abstract schema change features

2020-08-21 Thread gerritbot
gerritbot added a comment.


  Change 621717 had a related patch set uploaded (by Ladsgroup; owner: 
Ladsgroup):
  [mediawiki/extensions/Wikibase@master] Rename AddNormalizedTermsTablesDDL to 
term_store
  
  https://gerrit.wikimedia.org/r/621717

TASK DETAIL
  https://phabricator.wikimedia.org/T205094

EMAIL PREFERENCES
  https://phabricator.wikimedia.org/settings/panel/emailpreferences/

To: Ladsgroup, gerritbot
Cc: Lucas_Werkmeister_WMDE, Izno, Michael, Ladsgroup, daniel, Addshore, 
Aklapper, Matthias_Geisler_WMDE, Jonas, Alter-paule, Hazizibinmahdi, Beast1978, 
Un1tY, Akuckartz, Hook696, Iflorez, darthmon_wmde, Kent7301, alaa_wmde, 
joker88john, DannyS712, CucyNoiD, Nandana, Gaboe420, Giuliamocci, Cpaulf30, 
Lahi, Gq86, Af420, Bsandipan, Pablo-WMDE, GoranSMilovanovic, QZanden, 
LawExplorer, Lewizho99, Maathavan, _jensen, rosalieper, Scott_WUaS, 
Wikidata-bugs, aude, Dinoguy1000, Lydia_Pintscher, Mbch331, Jay8g
___
Wikidata-bugs mailing list
Wikidata-bugs@lists.wikimedia.org
https://lists.wikimedia.org/mailman/listinfo/wikidata-bugs


[Wikidata-bugs] [Maniphest] T205094: Investigate and restructure SQL directory, and use new MediaWiki abstract schema change features

2020-08-21 Thread gerritbot
gerritbot added a comment.


  Change 621559 **merged** by jenkins-bot:
  [mediawiki/extensions/Wikibase@master] Migrate the new term store to abstract 
schema
  
  https://gerrit.wikimedia.org/r/621559

TASK DETAIL
  https://phabricator.wikimedia.org/T205094

EMAIL PREFERENCES
  https://phabricator.wikimedia.org/settings/panel/emailpreferences/

To: Ladsgroup, gerritbot
Cc: Lucas_Werkmeister_WMDE, Izno, Michael, Ladsgroup, daniel, Addshore, 
Aklapper, Matthias_Geisler_WMDE, Jonas, Alter-paule, Hazizibinmahdi, Beast1978, 
Un1tY, Akuckartz, Hook696, Iflorez, darthmon_wmde, Kent7301, alaa_wmde, 
joker88john, DannyS712, CucyNoiD, Nandana, Gaboe420, Giuliamocci, Cpaulf30, 
Lahi, Gq86, Af420, Bsandipan, Pablo-WMDE, GoranSMilovanovic, QZanden, 
LawExplorer, Lewizho99, Maathavan, _jensen, rosalieper, Scott_WUaS, 
Wikidata-bugs, aude, Dinoguy1000, Lydia_Pintscher, Mbch331, Jay8g
___
Wikidata-bugs mailing list
Wikidata-bugs@lists.wikimedia.org
https://lists.wikimedia.org/mailman/listinfo/wikidata-bugs


[Wikidata-bugs] [Maniphest] T205094: Investigate and restructure SQL directory, and use new MediaWiki abstract schema change features

2020-08-21 Thread gerritbot
gerritbot added a comment.


  Change 621554 **merged** by jenkins-bot:
  [mediawiki/extensions/Wikibase@master] Migrate wb_property_info to abstract 
schema
  
  https://gerrit.wikimedia.org/r/621554

TASK DETAIL
  https://phabricator.wikimedia.org/T205094

EMAIL PREFERENCES
  https://phabricator.wikimedia.org/settings/panel/emailpreferences/

To: Ladsgroup, gerritbot
Cc: Lucas_Werkmeister_WMDE, Izno, Michael, Ladsgroup, daniel, Addshore, 
Aklapper, Matthias_Geisler_WMDE, Jonas, Alter-paule, Hazizibinmahdi, Beast1978, 
Un1tY, Akuckartz, Hook696, Iflorez, darthmon_wmde, Kent7301, alaa_wmde, 
joker88john, DannyS712, CucyNoiD, Nandana, Gaboe420, Giuliamocci, Cpaulf30, 
Lahi, Gq86, Af420, Bsandipan, Pablo-WMDE, GoranSMilovanovic, QZanden, 
LawExplorer, Lewizho99, Maathavan, _jensen, rosalieper, Scott_WUaS, 
Wikidata-bugs, aude, Dinoguy1000, Lydia_Pintscher, Mbch331, Jay8g
___
Wikidata-bugs mailing list
Wikidata-bugs@lists.wikimedia.org
https://lists.wikimedia.org/mailman/listinfo/wikidata-bugs


[Wikidata-bugs] [Maniphest] T205094: Investigate and restructure SQL directory, and use new MediaWiki abstract schema change features

2020-08-20 Thread gerritbot
gerritbot added a comment.


  Change 621559 had a related patch set uploaded (by Ladsgroup; owner: 
Ladsgroup):
  [mediawiki/extensions/Wikibase@master] Migrate the new term store to abstract 
schema
  
  https://gerrit.wikimedia.org/r/621559

TASK DETAIL
  https://phabricator.wikimedia.org/T205094

EMAIL PREFERENCES
  https://phabricator.wikimedia.org/settings/panel/emailpreferences/

To: Ladsgroup, gerritbot
Cc: Lucas_Werkmeister_WMDE, Izno, Michael, Ladsgroup, daniel, Addshore, 
Aklapper, Matthias_Geisler_WMDE, Jonas, Alter-paule, Hazizibinmahdi, Beast1978, 
Un1tY, Akuckartz, Hook696, Iflorez, darthmon_wmde, Kent7301, alaa_wmde, 
joker88john, DannyS712, CucyNoiD, Nandana, Gaboe420, Giuliamocci, Cpaulf30, 
Lahi, Gq86, Af420, Bsandipan, Pablo-WMDE, GoranSMilovanovic, QZanden, 
LawExplorer, Lewizho99, Maathavan, _jensen, rosalieper, Scott_WUaS, 
Wikidata-bugs, aude, Dinoguy1000, Lydia_Pintscher, Mbch331, Jay8g
___
Wikidata-bugs mailing list
Wikidata-bugs@lists.wikimedia.org
https://lists.wikimedia.org/mailman/listinfo/wikidata-bugs


[Wikidata-bugs] [Maniphest] T205094: Investigate and restructure SQL directory, and use new MediaWiki abstract schema change features

2020-08-20 Thread gerritbot
gerritbot added a comment.


  Change 621554 had a related patch set uploaded (by Ladsgroup; owner: 
Ladsgroup):
  [mediawiki/extensions/Wikibase@master] Migrate wb_property_info to abstract 
schema
  
  https://gerrit.wikimedia.org/r/621554

TASK DETAIL
  https://phabricator.wikimedia.org/T205094

EMAIL PREFERENCES
  https://phabricator.wikimedia.org/settings/panel/emailpreferences/

To: Ladsgroup, gerritbot
Cc: Lucas_Werkmeister_WMDE, Izno, Michael, Ladsgroup, daniel, Addshore, 
Aklapper, Matthias_Geisler_WMDE, Jonas, Alter-paule, Hazizibinmahdi, Beast1978, 
Un1tY, Akuckartz, Hook696, Iflorez, darthmon_wmde, Kent7301, alaa_wmde, 
joker88john, DannyS712, CucyNoiD, Nandana, Gaboe420, Giuliamocci, Cpaulf30, 
Lahi, Gq86, Af420, Bsandipan, Pablo-WMDE, GoranSMilovanovic, QZanden, 
LawExplorer, Lewizho99, Maathavan, _jensen, rosalieper, Scott_WUaS, 
Wikidata-bugs, aude, Dinoguy1000, Lydia_Pintscher, Mbch331, Jay8g
___
Wikidata-bugs mailing list
Wikidata-bugs@lists.wikimedia.org
https://lists.wikimedia.org/mailman/listinfo/wikidata-bugs


[Wikidata-bugs] [Maniphest] T205094: Investigate and restructure SQL directory, and use new MediaWiki abstract schema change features

2020-08-20 Thread gerritbot
gerritbot added a comment.


  Change 621037 **merged** by jenkins-bot:
  [mediawiki/extensions/Wikibase@master] Migrate entity_usage table in client 
to abstract schema
  
  https://gerrit.wikimedia.org/r/621037

TASK DETAIL
  https://phabricator.wikimedia.org/T205094

EMAIL PREFERENCES
  https://phabricator.wikimedia.org/settings/panel/emailpreferences/

To: Ladsgroup, gerritbot
Cc: Lucas_Werkmeister_WMDE, Izno, Michael, Ladsgroup, daniel, Addshore, 
Aklapper, Matthias_Geisler_WMDE, Jonas, Alter-paule, Hazizibinmahdi, Beast1978, 
Un1tY, Akuckartz, Hook696, Iflorez, darthmon_wmde, Kent7301, alaa_wmde, 
joker88john, DannyS712, CucyNoiD, Nandana, Gaboe420, Giuliamocci, Cpaulf30, 
Lahi, Gq86, Af420, Bsandipan, Pablo-WMDE, GoranSMilovanovic, QZanden, 
LawExplorer, Lewizho99, Maathavan, _jensen, rosalieper, Scott_WUaS, 
Wikidata-bugs, aude, Dinoguy1000, Lydia_Pintscher, Mbch331, Jay8g
___
Wikidata-bugs mailing list
Wikidata-bugs@lists.wikimedia.org
https://lists.wikimedia.org/mailman/listinfo/wikidata-bugs


[Wikidata-bugs] [Maniphest] T205094: Investigate and restructure SQL directory, and use new MediaWiki abstract schema change features

2020-08-18 Thread ReleaseTaggerBot
ReleaseTaggerBot added a project: MW-1.36-notes (1.36.0-wmf.6; 2020-08-25).

TASK DETAIL
  https://phabricator.wikimedia.org/T205094

EMAIL PREFERENCES
  https://phabricator.wikimedia.org/settings/panel/emailpreferences/

To: Ladsgroup, ReleaseTaggerBot
Cc: Lucas_Werkmeister_WMDE, Izno, Michael, Ladsgroup, daniel, Addshore, 
Aklapper, Matthias_Geisler_WMDE, Jonas, Alter-paule, Hazizibinmahdi, Beast1978, 
Un1tY, Akuckartz, Hook696, Iflorez, darthmon_wmde, Kent7301, alaa_wmde, 
joker88john, DannyS712, CucyNoiD, Nandana, Gaboe420, Giuliamocci, Cpaulf30, 
Lahi, Gq86, Af420, Bsandipan, Pablo-WMDE, GoranSMilovanovic, QZanden, 
LawExplorer, Lewizho99, Maathavan, _jensen, rosalieper, Scott_WUaS, 
Wikidata-bugs, aude, Dinoguy1000, Lydia_Pintscher, Mbch331, Jay8g
___
Wikidata-bugs mailing list
Wikidata-bugs@lists.wikimedia.org
https://lists.wikimedia.org/mailman/listinfo/wikidata-bugs


[Wikidata-bugs] [Maniphest] T205094: Investigate and restructure SQL directory, and use new MediaWiki abstract schema change features

2020-08-18 Thread gerritbot
gerritbot added a comment.


  Change 621037 had a related patch set uploaded (by Ladsgroup; owner: 
Ladsgroup):
  [mediawiki/extensions/Wikibase@master] Migrate entity_usage table in client 
to abstract schema
  
  https://gerrit.wikimedia.org/r/621037

TASK DETAIL
  https://phabricator.wikimedia.org/T205094

EMAIL PREFERENCES
  https://phabricator.wikimedia.org/settings/panel/emailpreferences/

To: Ladsgroup, gerritbot
Cc: Lucas_Werkmeister_WMDE, Izno, Michael, Ladsgroup, daniel, Addshore, 
Aklapper, Matthias_Geisler_WMDE, Jonas, Alter-paule, Hazizibinmahdi, Beast1978, 
Un1tY, Akuckartz, Hook696, Iflorez, darthmon_wmde, Kent7301, alaa_wmde, 
joker88john, DannyS712, CucyNoiD, Nandana, Gaboe420, Giuliamocci, Cpaulf30, 
Lahi, Gq86, Af420, Bsandipan, Pablo-WMDE, GoranSMilovanovic, QZanden, 
LawExplorer, Lewizho99, Maathavan, _jensen, rosalieper, Scott_WUaS, 
Wikidata-bugs, aude, Dinoguy1000, Lydia_Pintscher, Mbch331, Jay8g
___
Wikidata-bugs mailing list
Wikidata-bugs@lists.wikimedia.org
https://lists.wikimedia.org/mailman/listinfo/wikidata-bugs


[Wikidata-bugs] [Maniphest] T205094: Investigate and restructure SQL directory, and use new MediaWiki abstract schema change features

2020-08-18 Thread Ladsgroup
Ladsgroup added a comment.


  Yeah, it's not done now, I'm fine either way, I can start with client which 
is simpler

TASK DETAIL
  https://phabricator.wikimedia.org/T205094

EMAIL PREFERENCES
  https://phabricator.wikimedia.org/settings/panel/emailpreferences/

To: Ladsgroup
Cc: Lucas_Werkmeister_WMDE, Izno, Michael, Ladsgroup, daniel, Addshore, 
Aklapper, Matthias_Geisler_WMDE, Jonas, Alter-paule, Hazizibinmahdi, Beast1978, 
Un1tY, Akuckartz, Hook696, Iflorez, darthmon_wmde, Kent7301, alaa_wmde, 
joker88john, DannyS712, CucyNoiD, Nandana, Gaboe420, Giuliamocci, Cpaulf30, 
Lahi, Gq86, Af420, Bsandipan, Pablo-WMDE, GoranSMilovanovic, QZanden, 
LawExplorer, Lewizho99, Maathavan, _jensen, rosalieper, Scott_WUaS, 
Wikidata-bugs, aude, Dinoguy1000, Lydia_Pintscher, Mbch331, Jay8g
___
Wikidata-bugs mailing list
Wikidata-bugs@lists.wikimedia.org
https://lists.wikimedia.org/mailman/listinfo/wikidata-bugs


[Wikidata-bugs] [Maniphest] T205094: Investigate and restructure SQL directory, and use new MediaWiki abstract schema change features

2020-08-18 Thread Lucas_Werkmeister_WMDE
Lucas_Werkmeister_WMDE moved this task from Peer Review to Test (Verification) 
on the Wikidata-Campsite (Wikidata-Campsite-Iteration-∞) board.
Lucas_Werkmeister_WMDE added a comment.


  @Ladsgroup As far as I understand, the “use new MediaWiki abstract schema 
change features” part of this is not done yet. Should we still do that, or 
postpone it for now?

TASK DETAIL
  https://phabricator.wikimedia.org/T205094

WORKBOARD
  https://phabricator.wikimedia.org/project/board/3539/

EMAIL PREFERENCES
  https://phabricator.wikimedia.org/settings/panel/emailpreferences/

To: Ladsgroup, Lucas_Werkmeister_WMDE
Cc: Lucas_Werkmeister_WMDE, Izno, Michael, Ladsgroup, daniel, Addshore, 
Aklapper, Matthias_Geisler_WMDE, Jonas, Alter-paule, Hazizibinmahdi, Beast1978, 
Un1tY, Akuckartz, Hook696, Iflorez, darthmon_wmde, Kent7301, alaa_wmde, 
joker88john, DannyS712, CucyNoiD, Nandana, Gaboe420, Giuliamocci, Cpaulf30, 
Lahi, Gq86, Af420, Bsandipan, Pablo-WMDE, GoranSMilovanovic, QZanden, 
LawExplorer, Lewizho99, Maathavan, _jensen, rosalieper, Scott_WUaS, 
Wikidata-bugs, aude, Dinoguy1000, Lydia_Pintscher, Mbch331, Jay8g
___
Wikidata-bugs mailing list
Wikidata-bugs@lists.wikimedia.org
https://lists.wikimedia.org/mailman/listinfo/wikidata-bugs


[Wikidata-bugs] [Maniphest] T205094: Investigate and restructure SQL directory, and use new MediaWiki abstract schema change features

2020-08-18 Thread gerritbot
gerritbot added a comment.


  Change 619850 **merged** by jenkins-bot:
  [mediawiki/extensions/Wikibase@master] Reorganize repo schema scripts
  
  https://gerrit.wikimedia.org/r/619850

TASK DETAIL
  https://phabricator.wikimedia.org/T205094

EMAIL PREFERENCES
  https://phabricator.wikimedia.org/settings/panel/emailpreferences/

To: Ladsgroup, gerritbot
Cc: Izno, Michael, Ladsgroup, daniel, Addshore, Aklapper, 
Matthias_Geisler_WMDE, Jonas, Alter-paule, Hazizibinmahdi, Beast1978, Un1tY, 
Akuckartz, Hook696, Iflorez, darthmon_wmde, Kent7301, alaa_wmde, joker88john, 
DannyS712, CucyNoiD, Nandana, Gaboe420, Giuliamocci, Cpaulf30, Lahi, Gq86, 
Af420, Bsandipan, Pablo-WMDE, GoranSMilovanovic, QZanden, LawExplorer, 
Lewizho99, Maathavan, _jensen, rosalieper, Scott_WUaS, Wikidata-bugs, aude, 
Dinoguy1000, Lydia_Pintscher, Mbch331, Jay8g
___
Wikidata-bugs mailing list
Wikidata-bugs@lists.wikimedia.org
https://lists.wikimedia.org/mailman/listinfo/wikidata-bugs


[Wikidata-bugs] [Maniphest] T205094: Investigate and restructure SQL directory, and use new MediaWiki abstract schema change features

2020-08-18 Thread gerritbot
gerritbot added a comment.


  Change 619720 **merged** by jenkins-bot:
  [mediawiki/extensions/Wikibase@master] Remove duplicate code in 
SqlUsageTrackerSchemaUpdater
  
  https://gerrit.wikimedia.org/r/619720

TASK DETAIL
  https://phabricator.wikimedia.org/T205094

EMAIL PREFERENCES
  https://phabricator.wikimedia.org/settings/panel/emailpreferences/

To: Ladsgroup, gerritbot
Cc: Izno, Michael, Ladsgroup, daniel, Addshore, Aklapper, 
Matthias_Geisler_WMDE, Jonas, Alter-paule, Hazizibinmahdi, Beast1978, Un1tY, 
Akuckartz, Hook696, Iflorez, darthmon_wmde, Kent7301, alaa_wmde, joker88john, 
DannyS712, CucyNoiD, Nandana, Gaboe420, Giuliamocci, Cpaulf30, Lahi, Gq86, 
Af420, Bsandipan, Pablo-WMDE, GoranSMilovanovic, QZanden, LawExplorer, 
Lewizho99, Maathavan, _jensen, rosalieper, Scott_WUaS, Wikidata-bugs, aude, 
Dinoguy1000, Lydia_Pintscher, Mbch331, Jay8g
___
Wikidata-bugs mailing list
Wikidata-bugs@lists.wikimedia.org
https://lists.wikimedia.org/mailman/listinfo/wikidata-bugs


[Wikidata-bugs] [Maniphest] T205094: Investigate and restructure SQL directory, and use new MediaWiki abstract schema change features

2020-08-18 Thread gerritbot
gerritbot added a comment.


  Change 619555 **merged** by jenkins-bot:
  [mediawiki/extensions/Wikibase@master] Reorganize client schema scripts
  
  https://gerrit.wikimedia.org/r/619555

TASK DETAIL
  https://phabricator.wikimedia.org/T205094

EMAIL PREFERENCES
  https://phabricator.wikimedia.org/settings/panel/emailpreferences/

To: Ladsgroup, gerritbot
Cc: Izno, Michael, Ladsgroup, daniel, Addshore, Aklapper, 
Matthias_Geisler_WMDE, Jonas, Alter-paule, Hazizibinmahdi, Beast1978, Un1tY, 
Akuckartz, Hook696, Iflorez, darthmon_wmde, Kent7301, alaa_wmde, joker88john, 
DannyS712, CucyNoiD, Nandana, Gaboe420, Giuliamocci, Cpaulf30, Lahi, Gq86, 
Af420, Bsandipan, Pablo-WMDE, GoranSMilovanovic, QZanden, LawExplorer, 
Lewizho99, Maathavan, _jensen, rosalieper, Scott_WUaS, Wikidata-bugs, aude, 
Dinoguy1000, Lydia_Pintscher, Mbch331, Jay8g
___
Wikidata-bugs mailing list
Wikidata-bugs@lists.wikimedia.org
https://lists.wikimedia.org/mailman/listinfo/wikidata-bugs


[Wikidata-bugs] [Maniphest] T205094: Investigate and restructure SQL directory, and use new MediaWiki abstract schema change features

2020-08-12 Thread gerritbot
gerritbot added a comment.


  Change 619850 had a related patch set uploaded (by Ladsgroup; owner: 
Ladsgroup):
  [mediawiki/extensions/Wikibase@master] Reorganize repo schema scripts
  
  https://gerrit.wikimedia.org/r/619850

TASK DETAIL
  https://phabricator.wikimedia.org/T205094

EMAIL PREFERENCES
  https://phabricator.wikimedia.org/settings/panel/emailpreferences/

To: Ladsgroup, gerritbot
Cc: Izno, Michael, Ladsgroup, daniel, Addshore, Aklapper, 
Matthias_Geisler_WMDE, Jonas, Alter-paule, Hazizibinmahdi, Beast1978, Un1tY, 
Akuckartz, Hook696, Iflorez, darthmon_wmde, Kent7301, alaa_wmde, joker88john, 
DannyS712, CucyNoiD, Nandana, Gaboe420, Giuliamocci, Cpaulf30, Lahi, Gq86, 
Af420, Bsandipan, Pablo-WMDE, GoranSMilovanovic, QZanden, LawExplorer, 
Lewizho99, Maathavan, _jensen, rosalieper, Scott_WUaS, Wikidata-bugs, aude, 
Dinoguy1000, Lydia_Pintscher, Mbch331, Jay8g
___
Wikidata-bugs mailing list
Wikidata-bugs@lists.wikimedia.org
https://lists.wikimedia.org/mailman/listinfo/wikidata-bugs


[Wikidata-bugs] [Maniphest] T205094: Investigate and restructure SQL directory, and use new MediaWiki abstract schema change features

2020-08-12 Thread gerritbot
gerritbot added a comment.


  Change 619720 had a related patch set uploaded (by Lucas Werkmeister (WMDE); 
owner: Lucas Werkmeister (WMDE)):
  [mediawiki/extensions/Wikibase@master] Remove duplicate code in 
SqlUsageTrackerSchemaUpdater
  
  https://gerrit.wikimedia.org/r/619720

TASK DETAIL
  https://phabricator.wikimedia.org/T205094

EMAIL PREFERENCES
  https://phabricator.wikimedia.org/settings/panel/emailpreferences/

To: Ladsgroup, gerritbot
Cc: Izno, Michael, Ladsgroup, daniel, Addshore, Aklapper, 
Matthias_Geisler_WMDE, Jonas, Alter-paule, Hazizibinmahdi, Beast1978, Un1tY, 
Akuckartz, Hook696, Iflorez, darthmon_wmde, Kent7301, alaa_wmde, joker88john, 
DannyS712, CucyNoiD, Nandana, Gaboe420, Giuliamocci, Cpaulf30, Lahi, Gq86, 
Af420, Bsandipan, Pablo-WMDE, GoranSMilovanovic, QZanden, LawExplorer, 
Lewizho99, Maathavan, _jensen, rosalieper, Scott_WUaS, Wikidata-bugs, aude, 
Dinoguy1000, Lydia_Pintscher, Mbch331, Jay8g
___
Wikidata-bugs mailing list
Wikidata-bugs@lists.wikimedia.org
https://lists.wikimedia.org/mailman/listinfo/wikidata-bugs


[Wikidata-bugs] [Maniphest] T205094: Investigate and restructure SQL directory, and use new MediaWiki abstract schema change features

2020-08-11 Thread gerritbot
gerritbot added a comment.


  Change 619555 had a related patch set uploaded (by Ladsgroup; owner: 
Ladsgroup):
  [mediawiki/extensions/Wikibase@master] Reorganize client schema scripts
  
  https://gerrit.wikimedia.org/r/619555

TASK DETAIL
  https://phabricator.wikimedia.org/T205094

EMAIL PREFERENCES
  https://phabricator.wikimedia.org/settings/panel/emailpreferences/

To: Ladsgroup, gerritbot
Cc: Izno, Michael, Ladsgroup, daniel, Addshore, Aklapper, 
Matthias_Geisler_WMDE, Jonas, Hazizibinmahdi, Akuckartz, Iflorez, 
darthmon_wmde, alaa_wmde, DannyS712, Nandana, Lahi, Gq86, Pablo-WMDE, 
GoranSMilovanovic, QZanden, LawExplorer, _jensen, rosalieper, Scott_WUaS, 
Wikidata-bugs, aude, Dinoguy1000, Lydia_Pintscher, Mbch331, Jay8g
___
Wikidata-bugs mailing list
Wikidata-bugs@lists.wikimedia.org
https://lists.wikimedia.org/mailman/listinfo/wikidata-bugs


[Wikidata-bugs] [Maniphest] T205094: Investigate and restructure SQL directory, and use new MediaWiki abstract schema change features

2020-08-11 Thread gerritbot
gerritbot added a project: Patch-For-Review.

TASK DETAIL
  https://phabricator.wikimedia.org/T205094

EMAIL PREFERENCES
  https://phabricator.wikimedia.org/settings/panel/emailpreferences/

To: Ladsgroup, gerritbot
Cc: Izno, Michael, Ladsgroup, daniel, Addshore, Aklapper, 
Matthias_Geisler_WMDE, Jonas, Alter-paule, Hazizibinmahdi, Beast1978, Un1tY, 
Akuckartz, Hook696, Iflorez, darthmon_wmde, Kent7301, alaa_wmde, joker88john, 
DannyS712, CucyNoiD, Nandana, Gaboe420, Giuliamocci, Cpaulf30, Lahi, Gq86, 
Af420, Bsandipan, Pablo-WMDE, GoranSMilovanovic, QZanden, LawExplorer, 
Lewizho99, Maathavan, _jensen, rosalieper, Scott_WUaS, Wikidata-bugs, aude, 
Dinoguy1000, Lydia_Pintscher, Mbch331, Jay8g
___
Wikidata-bugs mailing list
Wikidata-bugs@lists.wikimedia.org
https://lists.wikimedia.org/mailman/listinfo/wikidata-bugs


[Wikidata-bugs] [Maniphest] T205094: Investigate and restructure SQL directory, and use new MediaWiki abstract schema change features

2020-08-11 Thread Ladsgroup
Ladsgroup claimed this task.
Ladsgroup moved this task from To Do to Doing on the Wikidata-Campsite 
(Wikidata-Campsite-Iteration-∞) board.
Restricted Application added a project: User-Ladsgroup.

TASK DETAIL
  https://phabricator.wikimedia.org/T205094

WORKBOARD
  https://phabricator.wikimedia.org/project/board/3539/

EMAIL PREFERENCES
  https://phabricator.wikimedia.org/settings/panel/emailpreferences/

To: Ladsgroup
Cc: Izno, Michael, Ladsgroup, daniel, Addshore, Aklapper, 
Matthias_Geisler_WMDE, Jonas, Hazizibinmahdi, Akuckartz, Iflorez, 
darthmon_wmde, alaa_wmde, DannyS712, Nandana, Lahi, Gq86, Pablo-WMDE, 
GoranSMilovanovic, QZanden, LawExplorer, _jensen, rosalieper, Scott_WUaS, 
Wikidata-bugs, aude, Dinoguy1000, Lydia_Pintscher, Mbch331, Jay8g
___
Wikidata-bugs mailing list
Wikidata-bugs@lists.wikimedia.org
https://lists.wikimedia.org/mailman/listinfo/wikidata-bugs


[Wikidata-bugs] [Maniphest] T205094: Investigate and restructure SQL directory, and use new MediaWiki abstract schema change features

2020-08-11 Thread darthmon_wmde
darthmon_wmde raised the priority of this task from "Medium" to "Needs Triage".

TASK DETAIL
  https://phabricator.wikimedia.org/T205094

EMAIL PREFERENCES
  https://phabricator.wikimedia.org/settings/panel/emailpreferences/

To: darthmon_wmde
Cc: Izno, Michael, Ladsgroup, daniel, Addshore, Aklapper, 
Matthias_Geisler_WMDE, Jonas, Akuckartz, Iflorez, darthmon_wmde, alaa_wmde, 
DannyS712, Nandana, Lahi, Gq86, Pablo-WMDE, GoranSMilovanovic, QZanden, 
LawExplorer, _jensen, rosalieper, Scott_WUaS, Wikidata-bugs, aude, Dinoguy1000, 
Lydia_Pintscher, Mbch331, Jay8g
___
Wikidata-bugs mailing list
Wikidata-bugs@lists.wikimedia.org
https://lists.wikimedia.org/mailman/listinfo/wikidata-bugs


[Wikidata-bugs] [Maniphest] T205094: Investigate and restructure SQL directory, and use new MediaWiki abstract schema change features

2020-08-05 Thread Ladsgroup
Ladsgroup added a comment.


  In T205094#6364135 , @Izno 
wrote:
  
  > In T205094#6359681 , 
@Ladsgroup wrote:
  >
  >> Mediawiki core actually supports upgrading from basically any version. A 
couple of months ago I got a ticket that I broke upgrading from 1.10 (and 
people are really upgrading from 1.10 to 1.33), I honestly think this is stupid 
and people should upgrade in batches (1..10 -> 1.20 -> 1.25 -> 1.33 for 
example) but for now, that's how it works (maybe we should change or don't 
comply to it)
  >
  > Slightly off-topic... (The handful of upgraders who have stopped in the 
MediaWiki Discord usually make smaller, jumps indeed, such as LTS to LTS.)
  
  Started a RFC to drop such support anyway T259771: RFC: Drop support for 
database upgrade older than two LTS releases 


TASK DETAIL
  https://phabricator.wikimedia.org/T205094

EMAIL PREFERENCES
  https://phabricator.wikimedia.org/settings/panel/emailpreferences/

To: Ladsgroup
Cc: Izno, Michael, Ladsgroup, daniel, Addshore, Aklapper, 
Matthias_Geisler_WMDE, Jonas, Akuckartz, Iflorez, darthmon_wmde, alaa_wmde, 
DannyS712, Nandana, Lahi, Gq86, Pablo-WMDE, GoranSMilovanovic, QZanden, 
LawExplorer, _jensen, rosalieper, Scott_WUaS, Wikidata-bugs, aude, Dinoguy1000, 
Lydia_Pintscher, Mbch331, Jay8g
___
Wikidata-bugs mailing list
Wikidata-bugs@lists.wikimedia.org
https://lists.wikimedia.org/mailman/listinfo/wikidata-bugs


[Wikidata-bugs] [Maniphest] T205094: Investigate and restructure SQL directory, and use new MediaWiki abstract schema change features

2020-08-05 Thread Ladsgroup
Ladsgroup added a comment.


  Found it: T230317: Error: 1146 Table 'valid_tag' doesn't exist when upgrading 
from an ancient MediaWiki version 

TASK DETAIL
  https://phabricator.wikimedia.org/T205094

EMAIL PREFERENCES
  https://phabricator.wikimedia.org/settings/panel/emailpreferences/

To: Ladsgroup
Cc: Izno, Michael, Ladsgroup, daniel, Addshore, Aklapper, 
Matthias_Geisler_WMDE, Jonas, Akuckartz, Iflorez, darthmon_wmde, alaa_wmde, 
DannyS712, Nandana, Lahi, Gq86, Pablo-WMDE, GoranSMilovanovic, QZanden, 
LawExplorer, _jensen, rosalieper, Scott_WUaS, Wikidata-bugs, aude, Dinoguy1000, 
Lydia_Pintscher, Mbch331, Jay8g
___
Wikidata-bugs mailing list
Wikidata-bugs@lists.wikimedia.org
https://lists.wikimedia.org/mailman/listinfo/wikidata-bugs


[Wikidata-bugs] [Maniphest] T205094: Investigate and restructure SQL directory, and use new MediaWiki abstract schema change features

2020-08-05 Thread Izno
Izno added a comment.


  In T205094#6359681 , 
@Ladsgroup wrote:
  
  > Mediawiki core actually supports upgrading from basically any version. A 
couple of months ago I got a ticket that I broke upgrading from 1.10 (and 
people are really upgrading from 1.10 to 1.33), I honestly think this is stupid 
and people should upgrade in batches (1..10 -> 1.20 -> 1.25 -> 1.33 for 
example) but for now, that's how it works (maybe we should change or don't 
comply to it)
  
  Slightly off-topic... (The handful of upgraders who have stopped in the 
MediaWiki Discord usually make smaller, jumps indeed, such as LTS to LTS.)

TASK DETAIL
  https://phabricator.wikimedia.org/T205094

EMAIL PREFERENCES
  https://phabricator.wikimedia.org/settings/panel/emailpreferences/

To: Izno
Cc: Izno, Michael, Ladsgroup, daniel, Addshore, Aklapper, 
Matthias_Geisler_WMDE, Jonas, Akuckartz, Iflorez, darthmon_wmde, alaa_wmde, 
DannyS712, Nandana, Lahi, Gq86, Pablo-WMDE, GoranSMilovanovic, QZanden, 
LawExplorer, _jensen, rosalieper, Scott_WUaS, Wikidata-bugs, aude, Dinoguy1000, 
Lydia_Pintscher, Mbch331, Jay8g
___
Wikidata-bugs mailing list
Wikidata-bugs@lists.wikimedia.org
https://lists.wikimedia.org/mailman/listinfo/wikidata-bugs


[Wikidata-bugs] [Maniphest] T205094: Investigate and restructure SQL directory, and use new MediaWiki abstract schema change features

2020-08-04 Thread Ladsgroup
Ladsgroup added a comment.


  In T205094#6359584 , 
@Michael wrote:
  
  > - Consider naming schema
  > - consider sorting files into subdirectories by years or tables or 
MediaWiki versions
  
  One important lack of distinction in wikibase sql files are the fact that it 
doesn't distinguish between the sql file for a fresh install (the "current 
schema" i.e. "the CREATE TABLE"s) and upgrade path from an old installation 
(i.e. "ALTER TABLES"). I think Wikibase.sql and AddNormalizedTermsTablesDDL.sql 
should go to a separate directory (and possibly merged to one)
  
  > - investigate which parts of DatabaseSchemaUpdater can maybe be deleted 
because they are very old
  > - we probably can mark everything for deletion older than MediaWiki 1.31
  
  Mediawiki core actually supports upgrading from basically any version. A 
couple of months ago I got a ticket that I broke upgrading from 1.10 (and 
people are really upgrading from 1.10 to 1.33), I honestly think this is stupid 
and people should upgrade in batches (1..10 -> 1.20 -> 1.25 -> 1.33 for 
example) but for now, that's how it works (maybe we should change or don't 
comply to it)
  
  In T205094#6359591 , 
@Michael wrote:
  
  > We still need to confirm whether abstract schema _changes_ is actually 
already available. The docs indicate that it is not done yet~~, but they might 
just be outdated~~.
  >
  > This seems to be blocked by T230420: Introduce JSON-based 
Doctrine-DBAL-based SchemaDiffBuilder 

  
  Some parts of it is not blocked :D

TASK DETAIL
  https://phabricator.wikimedia.org/T205094

EMAIL PREFERENCES
  https://phabricator.wikimedia.org/settings/panel/emailpreferences/

To: Ladsgroup
Cc: Michael, Ladsgroup, daniel, Addshore, Aklapper, Matthias_Geisler_WMDE, 
Jonas, Akuckartz, Iflorez, darthmon_wmde, alaa_wmde, DannyS712, Nandana, Lahi, 
Gq86, Pablo-WMDE, GoranSMilovanovic, QZanden, LawExplorer, _jensen, rosalieper, 
Scott_WUaS, Izno, Wikidata-bugs, aude, Dinoguy1000, Lydia_Pintscher, Mbch331, 
Jay8g
___
Wikidata-bugs mailing list
Wikidata-bugs@lists.wikimedia.org
https://lists.wikimedia.org/mailman/listinfo/wikidata-bugs


[Wikidata-bugs] [Maniphest] T205094: Investigate and restructure SQL directory, and use new MediaWiki abstract schema change features

2020-08-04 Thread Michael
Michael moved this task from To Do to Stalled/Waiting on the Wikidata-Campsite 
(Wikidata-Campsite-Iteration-∞) board.
Michael added a comment.


  We still need to confirm whether abstract schema _changes_ is actually 
already available. The docs indicate that it is not done yet, but they might 
just be outdated.

TASK DETAIL
  https://phabricator.wikimedia.org/T205094

WORKBOARD
  https://phabricator.wikimedia.org/project/board/3539/

EMAIL PREFERENCES
  https://phabricator.wikimedia.org/settings/panel/emailpreferences/

To: Michael
Cc: Michael, Ladsgroup, daniel, Addshore, Aklapper, Matthias_Geisler_WMDE, 
Jonas, Akuckartz, Iflorez, darthmon_wmde, alaa_wmde, DannyS712, Nandana, Lahi, 
Gq86, Pablo-WMDE, GoranSMilovanovic, QZanden, LawExplorer, _jensen, rosalieper, 
Scott_WUaS, Izno, Wikidata-bugs, aude, Dinoguy1000, Lydia_Pintscher, Mbch331, 
Jay8g
___
Wikidata-bugs mailing list
Wikidata-bugs@lists.wikimedia.org
https://lists.wikimedia.org/mailman/listinfo/wikidata-bugs


[Wikidata-bugs] [Maniphest] T205094: Investigate and restructure SQL directory, and use new MediaWiki abstract schema change features

2020-08-04 Thread Michael
Michael added a comment.


  - Consider naming schema
  - consider sorting files into subdirectories by years or tables or MediaWiki 
versions
  - investigate which parts of DatabaseSchemaUpdater can maybe be deleted 
because they are very old
  - we probably can mark everything for deletion older than MediaWiki 1.31

TASK DETAIL
  https://phabricator.wikimedia.org/T205094

EMAIL PREFERENCES
  https://phabricator.wikimedia.org/settings/panel/emailpreferences/

To: Michael
Cc: Michael, Ladsgroup, daniel, Addshore, Aklapper, Matthias_Geisler_WMDE, 
Jonas, Akuckartz, Iflorez, darthmon_wmde, alaa_wmde, DannyS712, Nandana, Lahi, 
Gq86, Pablo-WMDE, GoranSMilovanovic, QZanden, LawExplorer, _jensen, rosalieper, 
Scott_WUaS, Izno, Wikidata-bugs, aude, Dinoguy1000, Lydia_Pintscher, Mbch331, 
Jay8g
___
Wikidata-bugs mailing list
Wikidata-bugs@lists.wikimedia.org
https://lists.wikimedia.org/mailman/listinfo/wikidata-bugs


[Wikidata-bugs] [Maniphest] T205094: Investigate and restructure SQL directory, and use new MediaWiki abstract schema change features

2020-08-04 Thread Addshore
Addshore moved this task from Prioritized Tech to Wikidata-Campsite-Iteration-∞ 
on the Wikidata-Campsite board.
Addshore edited projects, added Wikidata-Campsite 
(Wikidata-Campsite-Iteration-∞); removed Wikidata-Campsite.

TASK DETAIL
  https://phabricator.wikimedia.org/T205094

WORKBOARD
  https://phabricator.wikimedia.org/project/board/3402/

EMAIL PREFERENCES
  https://phabricator.wikimedia.org/settings/panel/emailpreferences/

To: Addshore
Cc: Ladsgroup, daniel, Addshore, Aklapper, Matthias_Geisler_WMDE, Jonas, 
Akuckartz, Iflorez, darthmon_wmde, alaa_wmde, DannyS712, Nandana, Lahi, Gq86, 
Pablo-WMDE, GoranSMilovanovic, QZanden, LawExplorer, _jensen, rosalieper, 
Scott_WUaS, Izno, Wikidata-bugs, aude, Dinoguy1000, Lydia_Pintscher, Mbch331, 
Jay8g
___
Wikidata-bugs mailing list
Wikidata-bugs@lists.wikimedia.org
https://lists.wikimedia.org/mailman/listinfo/wikidata-bugs


[Wikidata-bugs] [Maniphest] T205094: Investigate and restructure SQL directory, and use new MediaWiki abstract schema change features

2020-08-04 Thread Addshore
Addshore updated the task description.

TASK DETAIL
  https://phabricator.wikimedia.org/T205094

EMAIL PREFERENCES
  https://phabricator.wikimedia.org/settings/panel/emailpreferences/

To: Addshore
Cc: Ladsgroup, daniel, Addshore, Aklapper, Matthias_Geisler_WMDE, Jonas, 
Akuckartz, darthmon_wmde, DannyS712, Nandana, Lahi, Gq86, Pablo-WMDE, 
GoranSMilovanovic, QZanden, LawExplorer, _jensen, rosalieper, Scott_WUaS, Izno, 
Wikidata-bugs, aude, Dinoguy1000, Lydia_Pintscher, Mbch331, Jay8g
___
Wikidata-bugs mailing list
Wikidata-bugs@lists.wikimedia.org
https://lists.wikimedia.org/mailman/listinfo/wikidata-bugs


[Wikidata-bugs] [Maniphest] T205094: Investigate and restructure SQL directory, and use new MediaWiki abstract schema change features

2020-08-04 Thread Addshore
Addshore raised the priority of this task from "Low" to "Medium".

TASK DETAIL
  https://phabricator.wikimedia.org/T205094

EMAIL PREFERENCES
  https://phabricator.wikimedia.org/settings/panel/emailpreferences/

To: Addshore
Cc: Ladsgroup, daniel, Addshore, Aklapper, Matthias_Geisler_WMDE, Jonas, 
Akuckartz, darthmon_wmde, DannyS712, Nandana, Lahi, Gq86, Pablo-WMDE, 
GoranSMilovanovic, QZanden, LawExplorer, _jensen, rosalieper, Scott_WUaS, Izno, 
Wikidata-bugs, aude, Dinoguy1000, Lydia_Pintscher, Mbch331, Jay8g
___
Wikidata-bugs mailing list
Wikidata-bugs@lists.wikimedia.org
https://lists.wikimedia.org/mailman/listinfo/wikidata-bugs


[Wikidata-bugs] [Maniphest] T205094: Investigate and restructure SQL directory, and use new MediaWiki abstract schema change features

2020-08-04 Thread Addshore
Addshore renamed this task from "Investigate and restructure SQL directory 
using new MediaWiki abstract schema change features" to "Investigate and 
restructure SQL directory, and use new MediaWiki abstract schema change 
features".

TASK DETAIL
  https://phabricator.wikimedia.org/T205094

EMAIL PREFERENCES
  https://phabricator.wikimedia.org/settings/panel/emailpreferences/

To: Addshore
Cc: Ladsgroup, daniel, Addshore, Aklapper, Matthias_Geisler_WMDE, Jonas, 
Akuckartz, darthmon_wmde, DannyS712, Nandana, Lahi, Gq86, Pablo-WMDE, 
GoranSMilovanovic, QZanden, LawExplorer, _jensen, rosalieper, Scott_WUaS, Izno, 
Wikidata-bugs, aude, Dinoguy1000, Lydia_Pintscher, Mbch331, Jay8g
___
Wikidata-bugs mailing list
Wikidata-bugs@lists.wikimedia.org
https://lists.wikimedia.org/mailman/listinfo/wikidata-bugs