Skip to content

Instantly share code, notes, and snippets.

@deselbi
Created February 15, 2017 18:33
Show Gist options
  • Star 2 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save deselbi/75e35c472351ada436c4077e0a03e7f2 to your computer and use it in GitHub Desktop.
Save deselbi/75e35c472351ada436c4077e0a03e7f2 to your computer and use it in GitHub Desktop.
Laravel auth migration fix
Index: config/database.php
IDEA additional info:
Subsystem: com.intellij.openapi.diff.impl.patch.CharsetEP
<+>UTF-8
===================================================================
--- config/database.php (date 1487179409000)
+++ config/database.php (revision )
@@ -46,8 +46,8 @@
'database' => env('DB_DATABASE', 'forge'),
'username' => env('DB_USERNAME', 'forge'),
'password' => env('DB_PASSWORD', ''),
- 'charset' => 'utf8mb4',
- 'collation' => 'utf8mb4_unicode_ci',
+ 'charset' => 'utf8',
+ 'collation' => 'utf8_unicode_ci',
'prefix' => '',
'strict' => true,
'engine' => null,
@VinnyLima
Copy link

Hi guy you solutions fixed in laravel 5.5 very thanks!!

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment