-
Notifications
You must be signed in to change notification settings - Fork 595
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Specified key was too long;max key length is 1000 bytes #318
Comments
I am getting this error as well when trying to migrate the tracker DB: [Illuminate\Database\QueryException] |
We have some new migrations in place to help fixing this error, did you try them? |
I found the same issue but it was not fixed with the "Schema::defaultStringLength(191);" added to the AppServiceProvider.php. |
I faced this issue as well. The best solution to solve this (imo) is to use InnoDB engine for tracker tables. By default all tables will use MyISAM.
|
I've got the same error, tryr the solution of devWaleed. |
Getting the same issue on the shared server, can I get a fix on this?
|
I got the Error fixed by changing the tracker database
|
I got this error
mysql version : MariaDB 10.2.8
php version : 7.0.22
and Tried this code in AppServiceProvider . still didnt work :
Schema::defaultStringLength(191);
The text was updated successfully, but these errors were encountered: