complete story 1.3 with qa test & added future recommendations to the dev

This commit is contained in:
Naser Mansour
2025-12-26 14:04:24 +02:00
parent 84d9c2f66a
commit ebb6841ed0
29 changed files with 760 additions and 101 deletions
@@ -0,0 +1,32 @@
<?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('admin_logs', function (Blueprint $table) {
$table->dropForeign(['admin_id']);
$table->unsignedBigInteger('admin_id')->nullable()->change();
$table->foreign('admin_id')->references('id')->on('users')->cascadeOnDelete();
});
}
/**
* Reverse the migrations.
*/
public function down(): void
{
Schema::table('admin_logs', function (Blueprint $table) {
$table->dropForeign(['admin_id']);
$table->unsignedBigInteger('admin_id')->nullable(false)->change();
$table->foreign('admin_id')->references('id')->on('users')->cascadeOnDelete();
});
}
};