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

6 lines
207 B
SQL

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