@recaptime-dev's working patches + fork for Phorge, a community fork of Phabricator. (Upstream dev and stable branches are at upstream/main and upstream/stable respectively.) hq.recaptime.dev/wiki/Phorge
phorge phabricator
1
fork

Configure Feed

Select the types of activity you want to include in your feed.

Remove uniqueness constraint from "sequence" key in project column table

Summary: Fixes T5611. We don't need sequences to be unique, and it makes it a pain to update them.

Test Plan: Dragged some columns around.

Reviewers: chad

Reviewed By: chad

Subscribers: epriestley

Maniphest Tasks: T5611

Differential Revision: https://secure.phabricator.com/D9914

+5
+5
resources/sql/autopatches/20140712.projcoluniq.sql
··· 1 + ALTER TABLE {$NAMESPACE}_project.project_column 2 + DROP KEY key_sequence; 3 + 4 + ALTER TABLE {$NAMESPACE}_project.project_column 5 + ADD KEY key_sequence (projectPHID, sequence);