1
0
Fork 0
mirror of https://we.phorge.it/source/phorge.git synced 2024-09-20 09:18:48 +02:00
phorge-phorge/resources/sql/patches/074.affectedpath.sql

9 lines
277 B
MySQL
Raw Normal View History

CREATE TABLE {$NAMESPACE}_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;