1
0
Fork 0
mirror of https://we.phorge.it/source/phorge.git synced 2024-12-18 19:40:55 +01:00

Allow very long notes on flags

Summary: Fixes T4703. This is a VARCHAR(255) for no particular reason.

Test Plan: {F136160}

Reviewers: btrahan, chad

Reviewed By: chad

Subscribers: epriestley

Maniphest Tasks: T4703

Differential Revision: https://secure.phabricator.com/D8652
This commit is contained in:
epriestley 2014-03-30 19:51:46 -07:00
parent a1d6fe379b
commit f239d81c1c

View file

@ -0,0 +1,2 @@
ALTER TABLE {$NAMESPACE}_flag.flag
CHANGE note note LONGTEXT NOT NULL COLLATE utf8_general_ci;