File: /home/xedaptot/be.naniguide.com/database/migrations/2021_07_08_180613_make_fields_nullable.php
<?php
use Illuminate\Database\Migrations\Migration;
use Illuminate\Database\Schema\Blueprint;
use Illuminate\Support\Facades\Schema;
class MakeFieldsNullable extends Migration
{
/**
* Run the migrations.
*
* @return void
*/
public function up()
{
Schema::table('sending_servers', function (Blueprint $table) {
$table->string('default_from_email')->nullable()->change();
});
}
/**
* Reverse the migrations.
*
* @return void
*/
public function down()
{
Schema::table('sending_servers', function (Blueprint $table) {
//
});
}
}