mirror of
https://gerrit.wikimedia.org/r/mediawiki/extensions/Echo
synced 2024-11-12 09:26:05 +00:00
374aeb5fa9
This is the same fix that has been done to Flow. Database names are limited to 63 per [1], so by upping the limit we allow longer db names (e.g db names longer than 30 characters). [1] https://dev.mysql.com/doc/refman/5.7/en/mysql-cluster-limitations-database-objects.html Change-Id: I0d26a77c1bb49719eebc6beead4d79a27fcd3826
3 lines
104 B
SQL
3 lines
104 B
SQL
-- Increase varchar size to 64
|
|
ALTER TABLE /*_*/echo_unread_wikis MODIFY euw_wiki VARCHAR(64) NOT NULL;
|