 6172f2bbd1
			
		
	
	6172f2bbd1
	
	
	
		
			
			Summary: Ref T3578. I forget if this was an explicit decision or not, but we currently let the same user answer questions multiple times. I think this probably causes more confusion than it provides freedom. In conjunction with other UI issues (commenting being weird, notably), we're seeing some use of answers to comment, which is undesirable. Require each answer's author to be unique. Merge existing nonunique authors' answers.
Test Plan: {F52062}
Reviewers: btrahan
Reviewed By: btrahan
CC: aran
Maniphest Tasks: T3578
Differential Revision: https://secure.phabricator.com/D6605
		
	
		
			
				
	
	
		
			3 lines
		
	
	
		
			116 B
		
	
	
	
		
			SQL
		
	
	
	
	
	
			
		
		
	
	
			3 lines
		
	
	
		
			116 B
		
	
	
	
		
			SQL
		
	
	
	
	
	
| ALTER TABLE {$NAMESPACE}_ponder.ponder_answer
 | |
|   ADD UNIQUE KEY `key_oneanswerperquestion` (questionID, authorPHID);
 |