Page MenuHomec4science

PhabricatorTransformedFile.php
No OneTemporary

File Metadata

Created
Thu, Sep 12, 13:52

PhabricatorTransformedFile.php

<?php
final class PhabricatorTransformedFile extends PhabricatorFileDAO {
protected $originalPHID;
protected $transform;
protected $transformedPHID;
public function getConfiguration() {
return array(
self::CONFIG_COLUMN_SCHEMA => array(
'transform' => 'text128',
),
self::CONFIG_KEY_SCHEMA => array(
'originalPHID' => array(
'columns' => array('originalPHID', 'transform'),
'unique' => true,
),
'transformedPHID' => array(
'columns' => array('transformedPHID'),
),
),
) + parent::getConfiguration();
}
}

Event Timeline