mirror of
https://we.phorge.it/source/phorge.git
synced 2024-11-10 17:02:41 +01:00
6 lines
207 B
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)
|
|
);
|