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/035.proxyimage.sql

7 lines
215 B
MySQL
Raw Normal View History

CREATE TABLE {$NAMESPACE}_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;