mirror of
https://we.phorge.it/source/phorge.git
synced 2024-11-10 08:52:39 +01:00
17 lines
554 B
SQL
17 lines
554 B
SQL
CREATE TABLE phabricator_repository.repository_arcanistproject (
|
|
id int unsigned not null auto_increment primary key,
|
|
phid varchar(64) binary not null,
|
|
unique key(phid),
|
|
name varchar(255) not null,
|
|
unique key (name),
|
|
repositoryID int unsigned
|
|
);
|
|
|
|
ALTER TABLE phabricator_repository.repository
|
|
ADD uuid varchar(64) binary;
|
|
|
|
ALTER TABLE phabricator_differential.differential_diff
|
|
CHANGE arcanistProject arcanistProjectPHID varchar(64) binary;
|
|
|
|
ALTER TABLE phabricator_differential.differential_diff
|
|
ADD repositoryUUID varchar(64) binary;
|