Summary: Ref T4038. This adds everything except the actual pushing part for mirrors. This isn't the most beautiful or sophisticated UI, but I want get the authoritative repositories self-hosted and get users beta-ing hosting as soon as possible. We can do transactions, etc., later on. Test Plan: See screenshots. Reviewers: btrahan Reviewed By: btrahan CC: aran Maniphest Tasks: T4038 Differential Revision: https://secure.phabricator.com/D7632
		
			
				
	
	
		
			14 lines
		
	
	
		
			504 B
		
	
	
	
		
			SQL
		
	
	
	
	
	
			
		
		
	
	
			14 lines
		
	
	
		
			504 B
		
	
	
	
		
			SQL
		
	
	
	
	
	
CREATE TABLE {$NAMESPACE}_repository.repository_mirror (
 | 
						|
  id INT UNSIGNED NOT NULL AUTO_INCREMENT PRIMARY KEY,
 | 
						|
  phid VARCHAR(64) NOT NULL COLLATE utf8_bin,
 | 
						|
  repositoryPHID VARCHAR(64) NOT NULL COLLATE utf8_bin,
 | 
						|
  remoteURI VARCHAR(255) NOT NULL COLLATE utf8_bin,
 | 
						|
  credentialPHID VARCHAR(64) COLLATE utf8_bin,
 | 
						|
  dateCreated INT UNSIGNED NOT NULL,
 | 
						|
  dateModified INT UNSIGNED NOT NULL,
 | 
						|
 | 
						|
  UNIQUE KEY `key_phid` (phid),
 | 
						|
  KEY `key_repository` (repositoryPHID)
 | 
						|
 | 
						|
) ENGINE=InnoDB, COLLATE utf8_general_ci;
 |