mirror of
https://we.phorge.it/source/phorge.git
synced 2024-11-10 17:02:41 +01:00
7 lines
208 B
MySQL
7 lines
208 B
MySQL
|
CREATE TABLE phabricator_differential.differential_viewtime (
|
||
|
viewerPHID varchar(64) not null,
|
||
|
objectPHID varchar(64) not null,
|
||
|
viewTime int unsigned not null,
|
||
|
PRIMARY KEY (viewerPHID, objectPHID)
|
||
|
);
|