mirror of
https://we.phorge.it/source/phorge.git
synced 2024-11-10 08:52:39 +01:00
3410cbd53e
Summary: Ref T603. Give countdowns proper UI-level policy controls, and an application-level default policy. Put policy information in the header. Test Plan: - Adjusted default policy. - Created new countdowns. - Edited countdowns. Reviewers: btrahan Reviewed By: btrahan CC: aran Maniphest Tasks: T603 Differential Revision: https://secure.phabricator.com/D7322
5 lines
175 B
SQL
5 lines
175 B
SQL
ALTER TABLE {$NAMESPACE}_countdown.countdown
|
|
ADD viewPolicy VARCHAR(64) NOT NULL;
|
|
|
|
UPDATE {$NAMESPACE}_countdown.countdown
|
|
SET viewPolicy = 'users' WHERE viewPolicy = '';
|