1
0
Fork 0
mirror of https://we.phorge.it/source/phorge.git synced 2024-11-18 04:42:40 +01:00

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
This commit is contained in:
Chad Little 2015-08-08 11:07:42 -07:00
parent 44f18cfb12
commit 736bda7081
2 changed files with 2 additions and 2 deletions

View file

@ -1,2 +1,2 @@
UPDATE {$NAMESPACE}_ponder.ponder_question
SET status = 'open' WHERE status = 0;
SET status = 'open' WHERE status = '0';

View file

@ -1,2 +1,2 @@
UPDATE {$NAMESPACE}_ponder.ponder_question
SET status = 'resolved' WHERE status = 1;
SET status = 'resolved' WHERE status = '1';