1
0
Fork 0
mirror of https://we.phorge.it/source/phorge.git synced 2024-09-20 17:28:51 +02:00
phorge-phorge/resources/sql/patches/032.viewtime.sql

7 lines
209 B
MySQL
Raw Normal View History

CREATE TABLE {$NAMESPACE}_differential.differential_viewtime (
2011-04-27 10:27:06 +02:00
viewerPHID varchar(64) not null,
objectPHID varchar(64) not null,
viewTime int unsigned not null,
PRIMARY KEY (viewerPHID, objectPHID)
);