mirror of
https://we.phorge.it/source/phorge.git
synced 2024-11-13 02:12:41 +01:00
11 lines
372 B
MySQL
11 lines
372 B
MySQL
|
ALTER TABLE phabricator_repository.repository_commit
|
||
|
ADD mailKey VARCHAR(20) NOT NULL;
|
||
|
|
||
|
ALTER TABLE phabricator_repository.repository_commit
|
||
|
ADD authorPHID VARCHAR(64) BINARY;
|
||
|
|
||
|
ALTER TABLE phabricator_repository.repository_commit
|
||
|
ADD auditStatus INT UNSIGNED NOT NULL;
|
||
|
|
||
|
ALTER TABLE phabricator_repository.repository_commit
|
||
|
ADD KEY (authorPHID, auditStatus, epoch);
|