简体   繁体   中英

Laravel 5.5 migration fails: Update column datatype string to json

When I migrate my db I get a error on updating a table column from string to JSON.

The column value is like:

{"images":["/vendors/57/horse-16.png"]}

I checked if this is a valid JSON and that looks good to me..

My migration file is:

public function up()
{
    Schema::table('vendor_horses', function (Blueprint $table) {
        $table->json('image')->change();
    });
}

My error in Laravel:

SQLSTATE[42000]: Syntax error or access violation: 1253 COLLATION 'utf8mb4_  
      unicode_ci' is not valid for CHARACTER SET 'binary' (SQL: ALTER TABLE vendo  
      r_horses CHANGE image image JSON DEFAULT NULL COLLATE utf8mb4_unicode_ci)    

I don't know what's wrong, the strings are json correct so why does the update fails?

I dig some issues related to the error in Github and found that when changing into a JSON field, the collation should be set to an empty string and this issue will be solved. So you can try by changing the below code:

$table->json('image')->change();

to

$table->json('image')->customSchemaOptions(['collation' => ''])->change();

For more details you can check this issue

$query = "ALTER TABLE tablename MODIFY image JSON DEFAULT NULL";
\Illuminate\Support\Facades\DB::statement($query);

Try this in laravel migration.. working for me

The technical post webpages of this site follow the CC BY-SA 4.0 protocol. If you need to reprint, please indicate the site URL or the original address.Any question please contact:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM