 e10fdbe77e
			
		
	
	e10fdbe77e
	
	
	
		
			
			Summary: Patches often read from slaves (possibly stale data) and use that information to write on master. It causes problems when applying more patches quickly after each other because data created in previous patch may not be replicated yet. Test Plan: $ bin/storage upgrade Reviewers: epriestley Reviewed By: epriestley CC: aran, Korvin Differential Revision: https://secure.phabricator.com/D4483
		
			
				
	
	
		
			37 lines
		
	
	
		
			781 B
		
	
	
	
		
			PHP
		
	
	
	
	
	
			
		
		
	
	
			37 lines
		
	
	
		
			781 B
		
	
	
	
		
			PHP
		
	
	
	
	
	
| <?php
 | |
| 
 | |
| echo "Migrating project members to edges...\n";
 | |
| $table = new PhabricatorProject();
 | |
| $table->establishConnection('w');
 | |
| 
 | |
| foreach (new LiskMigrationIterator($table) as $proj) {
 | |
|   $id = $proj->getID();
 | |
|   echo "Project {$id}: ";
 | |
| 
 | |
|   $members = queryfx_all(
 | |
|     $proj->establishConnection('w'),
 | |
|     'SELECT userPHID FROM %T WHERE projectPHID = %s',
 | |
|     'project_affiliation',
 | |
|     $proj->getPHID());
 | |
| 
 | |
|   if (!$members) {
 | |
|     echo "-\n";
 | |
|     continue;
 | |
|   }
 | |
| 
 | |
|   $members = ipull($members, 'userPHID');
 | |
| 
 | |
|   $editor = new PhabricatorEdgeEditor();
 | |
|   $editor->setSuppressEvents(true);
 | |
|   foreach ($members as $user_phid) {
 | |
|     $editor->addEdge(
 | |
|       $proj->getPHID(),
 | |
|       PhabricatorEdgeConfig::TYPE_PROJ_MEMBER,
 | |
|       $user_phid);
 | |
|   }
 | |
|   $editor->save();
 | |
|   echo "OKAY\n";
 | |
| }
 | |
| 
 | |
| echo "Done.\n";
 |