string('taxi_address_from', 500)->nullable(false)->change(); }); } /** * Reverse the migrations. */ public function down(): void { Schema::table('taxi_main', function(Blueprint $table){ $table->string('taxi_address_from', 500)->nullable(true)->change(); }); } };