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:
parent
44f18cfb12
commit
736bda7081
2 changed files with 2 additions and 2 deletions
|
@ -1,2 +1,2 @@
|
||||||
UPDATE {$NAMESPACE}_ponder.ponder_question
|
UPDATE {$NAMESPACE}_ponder.ponder_question
|
||||||
SET status = 'open' WHERE status = 0;
|
SET status = 'open' WHERE status = '0';
|
||||||
|
|
|
@ -1,2 +1,2 @@
|
||||||
UPDATE {$NAMESPACE}_ponder.ponder_question
|
UPDATE {$NAMESPACE}_ponder.ponder_question
|
||||||
SET status = 'resolved' WHERE status = 1;
|
SET status = 'resolved' WHERE status = '1';
|
||||||
|
|
Loading…
Reference in a new issue