File: /var/www/agighana.org_backup/2024_08_23_095316_create_nat_executives_table.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::create('nat_executives', function (Blueprint $table) {
$table->id();
$table->string('name')->nullable();
$table->string('position')->nullable();
$table->text('profile')->nullable();
$table->text('img')->nullable();
$table->timestamps();
});
}
/**
* Reverse the migrations.
*/
public function down(): void
{
Schema::dropIfExists('nat_executives');
}
};