complete story 3.7 with qa test

This commit is contained in:
Naser Mansour
2025-12-26 20:05:03 +02:00
parent 7af029e1af
commit 6254d54fe9
32 changed files with 2882 additions and 45 deletions
@@ -0,0 +1,28 @@
<?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('consultations', function (Blueprint $table) {
$table->timestamp('payment_received_at')->nullable()->after('payment_status');
});
}
/**
* Reverse the migrations.
*/
public function down(): void
{
Schema::table('consultations', function (Blueprint $table) {
$table->dropColumn('payment_received_at');
});
}
};