1
0
Fork 0
mirror of https://we.phorge.it/source/phorge.git synced 2024-11-18 04:42:40 +01:00

Change LONGTEXT cache column to BINARY

See T4898. As it turns out, `latin1` LONGTEXT is not approximately equivalent
to LONGBLOB.
This commit is contained in:
epriestley 2014-05-17 22:37:45 -07:00
parent d744d5d859
commit 15c408be1d

View file

@ -0,0 +1,4 @@
TRUNCATE {$NAMESPACE}_differential.differential_changeset_parse_cache;
ALTER TABLE {$NAMESPACE}_differential.differential_changeset_parse_cache
CHANGE cache cache LONGBLOB NOT NULL;