@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.

Sql Patch to update the user_externalaccount table.

Summary: Sql Patch to rename the externalaccount table to user_externalaccount and to add dateCreated, dateModified fields to the updated table.

Test Plan: {F41442}

Reviewers: epriestley

Reviewed By: epriestley

CC: aran, Korvin, AnhNhan

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

authored by

Afaque Hussain and committed by
epriestley
3f7ae27b fe36c28f

+10
+6
resources/sql/patches/20130423.updateexternalaccount.sql
··· 1 + RENAME TABLE `{$NAMESPACE}_user`.`externalaccount` 2 + TO `{$NAMESPACE}_user`.`user_externalaccount`; 3 + 4 + ALTER TABLE `{$NAMESPACE}_user`.`user_externalaccount` 5 + ADD `dateCreated` INT UNSIGNED NOT NULL, 6 + ADD `dateModified` INT UNSIGNED NOT NULL;
+4
src/infrastructure/storage/patch/PhabricatorBuiltinPatchList.php
··· 1242 1242 'type' => 'sql', 1243 1243 'name' => $this->getPatchPath('20130417.externalaccount.sql'), 1244 1244 ), 1245 + '20130423.updateexternalaccount.sql' => array( 1246 + 'type' => 'sql', 1247 + 'name' => $this->getPatchPath('20130423.updateexternalaccount.sql'), 1248 + ), 1245 1249 ); 1246 1250 } 1247 1251 }