mirror of
https://we.phorge.it/source/phorge.git
synced 2024-11-10 17:02:41 +01:00
8 lines
226 B
MySQL
8 lines
226 B
MySQL
|
CREATE TABLE phabricator_differential.differential_revisionhash (
|
||
|
revisionID INT UNSIGNED NOT NULL,
|
||
|
type CHAR(4) BINARY NOT NULL,
|
||
|
hash VARCHAR(40) BINARY NOT NULL,
|
||
|
KEY (type, hash),
|
||
|
KEY (revisionID)
|
||
|
) ENGINE=InnoDB;
|