Summary:
Adds a profile edit controller (with just one field and on links to it) that uses ApplicationTransactions and CustomField.
{F45617}
My plan is to move the other profile fields to this interface and get rid of Settings -> Profile. Basically, these will be "settings":
  - Sex
  - Language
  - Timezone
These will be "profile":
  - Real Name
  - Title
  - Blurb
  - Profile Image (but I'm going to put this on a separate UI)
  - Other custom fields
Test Plan: Edited my realname using the new interface.
Reviewers: chad, seporaitis
Reviewed By: chad
CC: aran
Differential Revision: https://secure.phabricator.com/D6152
		
	
		
			
				
	
	
		
			24 lines
		
	
	
		
			878 B
		
	
	
	
		
			SQL
		
	
	
	
	
	
			
		
		
	
	
			24 lines
		
	
	
		
			878 B
		
	
	
	
		
			SQL
		
	
	
	
	
	
CREATE TABLE {$NAMESPACE}_user.user_transaction (
 | 
						|
  id INT UNSIGNED NOT NULL PRIMARY KEY AUTO_INCREMENT,
 | 
						|
  phid VARCHAR(64) NOT NULL COLLATE utf8_bin,
 | 
						|
  authorPHID VARCHAR(64) NOT NULL COLLATE utf8_bin,
 | 
						|
  objectPHID VARCHAR(64) NOT NULL COLLATE utf8_bin,
 | 
						|
  viewPolicy VARCHAR(64) NOT NULL COLLATE utf8_bin,
 | 
						|
  editPolicy VARCHAR(64) NOT NULL COLLATE utf8_bin,
 | 
						|
  commentPHID VARCHAR(64) COLLATE utf8_bin,
 | 
						|
  commentVersion INT UNSIGNED NOT NULL,
 | 
						|
  transactionType VARCHAR(32) NOT NULL COLLATE utf8_bin,
 | 
						|
  oldValue LONGTEXT NOT NULL COLLATE utf8_bin,
 | 
						|
  newValue LONGTEXT NOT NULL COLLATE utf8_bin,
 | 
						|
  metadata LONGTEXT NOT NULL COLLATE utf8_bin,
 | 
						|
  contentSource LONGTEXT NOT NULL COLLATE utf8_bin,
 | 
						|
  dateCreated INT UNSIGNED NOT NULL,
 | 
						|
  dateModified INT UNSIGNED NOT NULL,
 | 
						|
 | 
						|
  UNIQUE KEY `key_phid` (phid),
 | 
						|
  KEY `key_object` (objectPHID)
 | 
						|
 | 
						|
) ENGINE=InnoDB, COLLATE utf8_general_ci;
 | 
						|
 | 
						|
 |