1
0
Fork 0
mirror of https://we.phorge.it/source/phorge.git synced 2024-11-10 17:02:41 +01:00
phorge-phorge/resources/sql/patches/022.differentialcommit.sql

7 lines
207 B
MySQL
Raw Normal View History

CREATE TABLE phabricator_differential.differential_commit (
revisionID int unsigned not null,
commitPHID varchar(64) binary not null,
primary key (revisionID, commitPHID),
unique key (commitPHID)
);