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

Fix SQL issue with Ponder migration

Summary: This fails to apply on my second sandbox with incorrect DOUBLE value. Reran SQL, works as expected.

Test Plan: Rerun new SQL on ponder_question table

Reviewers: epriestley

Reviewed By: epriestley

Subscribers: Korvin

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

+2 -2
+1 -1
resources/sql/autopatches/20150806.ponder.status.2.sql
··· 1 1 UPDATE {$NAMESPACE}_ponder.ponder_question 2 - SET status = 'open' WHERE status = 0; 2 + SET status = 'open' WHERE status = '0';
+1 -1
resources/sql/autopatches/20150806.ponder.status.3.sql
··· 1 1 UPDATE {$NAMESPACE}_ponder.ponder_question 2 - SET status = 'resolved' WHERE status = 1; 2 + SET status = 'resolved' WHERE status = '1';