~ubuntu-branches/ubuntu/vivid/phabricator/vivid-proposed

« back to all changes in this revision

Viewing changes to phabricator/resources/sql/patches/019.arcprojects.sql

  • Committer: Package Import Robot
  • Author(s): Richard Sellam
  • Date: 2014-10-23 20:49:26 UTC
  • Revision ID: package-import@ubuntu.com-20141023204926-ar20vnfjqwxysrce
Tags: upstream-0~git20141023
ImportĀ upstreamĀ versionĀ 0~git20141023

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
CREATE TABLE {$NAMESPACE}_repository.repository_arcanistproject (
 
2
  id int unsigned not null auto_increment primary key,
 
3
  phid varchar(64) binary not null,
 
4
  unique key(phid),
 
5
  name varchar(255) not null,
 
6
  unique key (name),
 
7
  repositoryID int unsigned
 
8
);
 
9
 
 
10
ALTER TABLE {$NAMESPACE}_repository.repository
 
11
  ADD uuid varchar(64) binary;
 
12
 
 
13
ALTER TABLE {$NAMESPACE}_differential.differential_diff
 
14
  CHANGE arcanistProject arcanistProjectPHID varchar(64) binary;
 
15
 
 
16
ALTER TABLE {$NAMESPACE}_differential.differential_diff
 
17
  ADD repositoryUUID varchar(64) binary;