Search
 
SCRIPT & CODE EXAMPLE
 
CODE EXAMPLE FOR PHP

General error: 1709 Index column size too large. The maximum column size is 767 bytes.

//Laravel located in config/database.php
//replace this one in mysql
    'charset' => 'utf8mb4',
    'collation' => 'utf8mb4_unicode_ci',
            
//to this one
    'charset'   => 'utf8',
    'collation' => 'utf8_unicode_ci',
Source by stackoverflow.com #
 
PREVIOUS NEXT
Tagged: #General #Index #column #size #The #maximum #column #size
ADD COMMENT
Topic
Name
6+6 =