<?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::create('test_centers', function (Blueprint $table) {
$table->id();
$table->string('name', 255);
$table->string('email', 255);
$table->string('contact_person', 255)->nullable();
$table->string('phone', 20)->nullable();
$table->string('location', 255)->nullable();
$table->text('address');
$table->timestamps();
});
}
/**
* Reverse the migrations.
*/
public function down(): void
{
Schema::dropIfExists('test_centers');
}
};