From 199188dea340b49b7b7dd5f34198805fbc557aba Mon Sep 17 00:00:00 2001 From: John Olheiser Date: Tue, 4 May 2021 23:39:09 -0500 Subject: [PATCH] MySQL 5 FAQ (#15729) * MySQL 5 Signed-off-by: jolheiser * Wording --- doc/help/faq.en-us.md | 8 +++++++- 1 file changed, 7 insertions(+), 1 deletion(-) diff --git a/doc/help/faq.en-us.md b/doc/help/faq.en-us.md index b3cf1aa0..1ae881d5 100644 --- a/doc/help/faq.en-us.md +++ b/doc/help/faq.en-us.md @@ -324,7 +324,13 @@ is too small. Gitea requires that the `ROWFORMAT` for its tables is `DYNAMIC`. If you are receiving an error line containing `Error 1071: Specified key was too long; max key length is 1000 bytes...` then you are attempting to run Gitea on tables which use the ISAM engine. While this may have worked by chance in previous versions of Gitea, it has never been officially supported and -you must use InnoDB. You should run `ALTER TABLE table_name ENGINE=InnoDB;` for each table in the database. +you must use InnoDB. You should run `ALTER TABLE table_name ENGINE=InnoDB;` for each table in the database. +If you are using MySQL 5, another possible fix is +```mysql +SET GLOBAL innodb_file_format=Barracuda; +SET GLOBAL innodb_file_per_table=1; +SET GLOBAL innodb_large_prefix=1; +``` ## Why Are Emoji Broken On MySQL