purityselect/database/migrations/2024_01_10_232529_alter_appointments_table.php
2024-10-25 01:05:27 +05:00

27 lines
514 B
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('doctor_appointments', function (Blueprint $table) {
$table->string('appointment_time', 19)->change();
});
}
/**
* Reverse the migrations.
*/
public function down(): void
{
//
}
};