We're currently upgrading sulu 1.6. to 2.0 - while following the guide I noticed, that we_analytics.title stays on varchar(255), while all other varchar fields are converted to varchar(191)
ALTER TABLE we_analytics CHANGE webspace_key webspace_key VARCHAR(191) NOT NULL;
-- this one is missing?: ALTER TABLE we_analytics CHANGE title title VARCHAR(191) NOT NULL;
ALTER TABLE we_analytics CONVERT TO CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci;
Is this an error of the docs or correct like this?