@recaptime-dev's working patches + fork for Phorge, a community fork of Phabricator. (Upstream dev and stable branches are at upstream/main and upstream/stable respectively.) hq.recaptime.dev/wiki/Phorge
phorge phabricator
1
fork

Configure Feed

Select the types of activity you want to include in your feed.

Schema patch to add a column to Phabricator_File.file table

Summary: Added a column called explicit_upload to Phabricator_File.file table

Test Plan: By chekcing locally if the the column has been added in table using mysql commands.

Reviewers: epriestley

CC: aran, Korvin

Differential Revision: https://secure.phabricator.com/D5384

authored by

Afaque Hussain and committed by
epriestley
77a87658 3b801fa5

+8
+2
resources/sql/patches/20130319.phabricatorfileexplicitupload.sql
··· 1 + ALTER TABLE {$NAMESPACE}_file.file 2 + ADD isExplicitUpload BOOLEAN DEFAULT TRUE;
+1
src/applications/files/storage/PhabricatorFile.php
··· 22 22 protected $storageHandle; 23 23 24 24 protected $ttl; 25 + protected $isExplicitUpload = 1; 25 26 26 27 public function getConfiguration() { 27 28 return array(
+5
src/infrastructure/storage/patch/PhabricatorBuiltinPatchList.php
··· 1173 1173 'type' => 'sql', 1174 1174 'name' => $this->getPatchPath('releeph.sql'), 1175 1175 ), 1176 + '20130319.phabricatorfileexplicitupload.sql' => array( 1177 + 'type' => 'sql', 1178 + 'name' => $this->getPatchPath( 1179 + '20130319.phabricatorfileexplicitupload.sql'), 1180 + ), 1176 1181 ); 1177 1182 } 1178 1183