mirror of
https://we.phorge.it/source/phorge.git
synced 2024-11-10 17:02:41 +01:00
7 lines
214 B
MySQL
7 lines
214 B
MySQL
|
CREATE TABLE phabricator_file.file_proxyimage (
|
||
|
id int unsigned not null primary key auto_increment,
|
||
|
uri varchar(255) binary not null,
|
||
|
unique key(uri),
|
||
|
filePHID varchar(64) binary not null
|
||
|
) ENGINE=InnoDB;
|