This website requires JavaScript.
Explore
Help
Sign in
revi-archive
/
phorge-phorge
Watch
1
Star
0
Fork
You've already forked phorge-phorge
0
mirror of
https://we.phorge.it/source/phorge.git
synced
2024-11-10 17:02:41 +01:00
Code
Issues
Releases
Wiki
Activity
4c1e356658
phorge-phorge
/
resources
/
sql
/
patches
/
094.phrictioncolumn.sql
3 lines
95 B
MySQL
Raw
Normal View
History
Unescape
Escape
Shorten Phriction slug field to 256 to avoid key length issues in UTF-8 default databases Summary: This is a stopgap patch until we fix T345/T327 properly, but you can't add a 512-character key to a UTF-8 column because it creates an index on more than 767 bytes, which is the key length limit. Test Plan: Ran schmea upgrade script. Reviewers: indiefan, btrahan, jungejason Reviewed By: jungejason CC: aran, epriestley, xela, jungejason Maniphest Tasks: T327 Differential Revision: https://secure.phabricator.com/D1391
2012-01-13 21:07:50 +01:00
ALTER
TABLE
phabricator_phriction
.
phriction_document
Minor, reduce slug column size to 128, see D1391.
2012-01-14 02:16:37 +01:00
CHANGE
slug
slug
VARCHAR
(
128
)
NOT
NULL
;
Copy permalink