mirror of
https://we.phorge.it/source/phorge.git
synced 2024-11-10 17:02:41 +01:00
8af5bb117d
Summary: This is still very rough but provides basic support for generating image thumbnails. I need to separate stuff out a bit but I'm going to integrate into Maniphest before I hit the profile stuff so this seems like a reasonable starting point. Test Plan: Generated some image thumbnails in various sizes. Reviewed By: aran Reviewers: jungejason, tuomaspelkonen, aran CC: aran Differential Revision: 333
10 lines
383 B
SQL
10 lines
383 B
SQL
CREATE TABLE phabricator_file.file_transformedfile (
|
|
id INT UNSIGNED NOT NULL AUTO_INCREMENT PRIMARY KEY,
|
|
originalPHID varchar(64) BINARY NOT NULL,
|
|
transform varchar(255) BINARY NOT NULL,
|
|
unique key (originalPHID, transform),
|
|
transformedPHID varchar(64) BINARY NOT NULL,
|
|
key (transformedPHID),
|
|
dateCreated INT UNSIGNED NOT NULL,
|
|
dateModified INT UNSIGNED NOT NULL
|
|
);
|