File: /var/www/html/owlcrm/database/migrations/2025_01_24_042649_add_user_id_to_reminders_table.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('reminders', function (Blueprint $table) {
$table->unsignedBigInteger('user_id')->nullable()->after('id');
});
}
/**
* Reverse the migrations.
*/
public function down(): void
{
Schema::table('reminders', function (Blueprint $table) {
$table->dropColumn('user_id');
});
}
};