1
0
Fork 0
mirror of https://we.phorge.it/source/phorge.git synced 2024-09-20 17:28:51 +02:00
phorge-phorge/resources/sql/patches/20131015.cpolicy.sql
epriestley 3410cbd53e Add application and object level policy controls to Countdown
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
2013-10-16 10:36:08 -07:00

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 = '';