eporsche / daybreak

Simple timesheets and vacation management for small businesses.
MIT License
127 stars 37 forks source link

[BUG] - Specified key was too long; max key length is 1000 bytes #11

Closed nejcdev closed 3 years ago

nejcdev commented 3 years ago

On php artisan migrate:refresh --seed

  Illuminate\Database\QueryException 

  SQLSTATE[42000]: Syntax error or access violation: 1071 Specified key was too long; max key length is 1000 bytes (SQL: alter table `personal_access_tokens` add index `personal_access_tokens_tokenable_type_tokenable_id_index`(`tokenable_type`, `tokenable_id`))

Solution:

As outlined in the Migrations guide to fix this all you have to do is edit your AppServiceProvider.php file and inside the boot method set a default string length:

use Illuminate\Support\Facades\Schema;

public function boot()
{
    Schema::defaultStringLength(191);
}
Nejcc commented 3 years ago

I fixed in PR

stale[bot] commented 3 years ago

This issue has been automatically marked as stale because it has not had recent activity. It will be closed if no further activity occurs. Thank you for your contributions.