Laravel tests fail after a simple migration Laravel tests fail after a simple migration sqlite sqlite

Laravel tests fail after a simple migration


Either split up the drop into two separate actions or alternately pass an array to dropColumn of the columns you want dropped.

Either

Schema::table('clients', function (Blueprint $table) {    $table->dropColumn('country');});Schema::table('clients', function (Blueprint $table) {    $table->dropColumn('city');});

or

$table->dropColumn(['country', 'city']);

see https://github.com/laravel/framework/issues/2979