mirror of
https://we.phorge.it/source/phorge.git
synced 2024-11-10 17:02:41 +01:00
9 lines
276 B
MySQL
9 lines
276 B
MySQL
|
CREATE TABLE phabricator_differential.differential_affectedpath (
|
||
|
repositoryID INT UNSIGNED NOT NULL,
|
||
|
pathID INT UNSIGNED NOT NULL,
|
||
|
epoch INT UNSIGNED NOT NULL,
|
||
|
KEY (repositoryID, pathID, epoch),
|
||
|
revisionID INT UNSIGNED NOT NULL,
|
||
|
KEY (revisionID)
|
||
|
) ENGINE=InnoDB;
|