In includes/models/class-ss-page.php you set column widths to 255 for a number of varchar columns.
If the db server defaults to mb4 implementation for unicode columns this fails as the index length is 1024K – instead this should be set to approx varchar(190) so the index creation does not fail.
Yours
James