File: /var/www/html/owlcrm/database/migrations/2024_12_27_092339_alter_leads_table_make_city_nullable.php
<?php
use Illuminate\Database\Migrations\Migration;
use Illuminate\Database\Schema\Blueprint;
use Illuminate\Support\Facades\Schema;
return new class extends Migration
{
/**
* Run the migrations.
*/
public function up(): void
{
Schema::table('leads', function (Blueprint $table) {
$table->unsignedBigInteger('city')->nullable()->change();
});
}
/**
* Reverse the migrations.
*/
public function down(): void
{
Schema::table('leads', function (Blueprint $table) {
$table->unsignedBigInteger('city')->nullable(false)->change();
});
}
};