mirror of
https://we.phorge.it/source/phorge.git
synced 2024-11-10 17:02:41 +01:00
7ad68e63e4
Summary: Flags are a personal collection of things you want to take a look at later. You can use several different colors and add notes. Not really sure if this is actually a good idea or not but it was easy to build. Planned features: - Allow Herald rules to add flags. - In the "edit flag" dialog, have a "[x] Subscribe Me" checkbox that CCs you. - Support Diffusion. - Support Phriction. - Always show flags on an object if you have them (in every view)? - Edit dialog feels a little heavy? - More filtering in /flag/ tool. - Add a top-level links somewhere? Test Plan: Added, edited and removed flags from things. Viewed flags in flag view. Reviewers: aran, btrahan Reviewed By: btrahan CC: aran, epriestley, Koolvin Maniphest Tasks: T1041 Differential Revision: https://secure.phabricator.com/D2024
16 lines
No EOL
582 B
SQL
16 lines
No EOL
582 B
SQL
CREATE DATABASE phabricator_flag COLLATE utf8_general_ci;
|
|
|
|
CREATE TABLE phabricator_flag.flag (
|
|
id INT UNSIGNED NOT NULL AUTO_INCREMENT PRIMARY KEY,
|
|
ownerPHID varchar(64) COLLATE utf8_bin NOT NULL,
|
|
type varchar(4) COLLATE utf8_bin NOT NULL,
|
|
objectPHID varchar(64) COLLATE utf8_bin NOT NULL,
|
|
reasonPHID varchar(64) COLLATE utf8_bin NOT NULL,
|
|
color INT UNSIGNED NOT NULL,
|
|
note varchar(255) COLLATE utf8_general_ci,
|
|
dateCreated INT UNSIGNED NOT NULL,
|
|
dateModified INT UNSIGNED NOT NULL,
|
|
|
|
UNIQUE KEY (ownerPHID, type, objectPHID),
|
|
KEY (objectPHID)
|
|
) ENGINE=InnoDB; |