complete 3.8 with qa test

This commit is contained in:
Naser Mansour
2025-12-26 20:17:40 +02:00
parent 6254d54fe9
commit e593beacfc
14 changed files with 864 additions and 28 deletions
@@ -0,0 +1,29 @@
<?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('reminder_24h_sent_at')->nullable();
$table->timestamp('reminder_2h_sent_at')->nullable();
});
}
/**
* Reverse the migrations.
*/
public function down(): void
{
Schema::table('consultations', function (Blueprint $table) {
$table->dropColumn(['reminder_24h_sent_at', 'reminder_2h_sent_at']);
});
}
};