Summary: Sql Patch to rename the externalaccount table to user_externalaccount and to add dateCreated, dateModified fields to the updated table.
Test Plan: {F41442}
Reviewers: epriestley
Reviewed By: epriestley
CC: aran, Korvin, AnhNhan
Differential Revision: https://secure.phabricator.com/D5770
		
	
		
			
				
	
	
		
			7 lines
		
	
	
		
			243 B
		
	
	
	
		
			SQL
		
	
	
	
	
	
			
		
		
	
	
			7 lines
		
	
	
		
			243 B
		
	
	
	
		
			SQL
		
	
	
	
	
	
RENAME TABLE `{$NAMESPACE}_user`.`externalaccount`
 | 
						|
  TO `{$NAMESPACE}_user`.`user_externalaccount`;
 | 
						|
 | 
						|
ALTER TABLE `{$NAMESPACE}_user`.`user_externalaccount`
 | 
						|
  ADD `dateCreated` INT UNSIGNED NOT NULL,
 | 
						|
  ADD `dateModified` INT UNSIGNED NOT NULL;
 |