mirror of
https://we.phorge.it/source/phorge.git
synced 2024-11-09 16:32:39 +01:00
809ae81752
Summary: Ref T13682. This prepares for modernizing Slowvote and exposing a more usable API. Test Plan: Ran migrations, opened and closed polls. Subscribers: PHID-OPKG-gm6ozazyms6q6i22gyam Maniphest Tasks: T13682 Differential Revision: https://secure.phabricator.com/D21848
5 lines
173 B
SQL
5 lines
173 B
SQL
UPDATE {$NAMESPACE}_slowvote.slowvote_poll
|
|
SET status = 'open' WHERE status = '0';
|
|
|
|
UPDATE {$NAMESPACE}_slowvote.slowvote_poll
|
|
SET status = 'closed' WHERE status = '1';
|