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;
|