skripsiProject/database/migrations/2025_08_19_084855_create_gu...

26 lines
629 B
PHP

<?php
use Illuminate\Database\Migrations\Migration;
use Illuminate\Database\Schema\Blueprint;
use Illuminate\Support\Facades\Schema;
return new class extends Migration {
public function up(): void
{
Schema::create('gurus', function (Blueprint $table) {
$table->id();
$table->string('nama');
$table->string('nip')->unique();
$table->string('mapel'); // tambahkan ini
$table->string('alamat')->nullable();
$table->string('telepon')->nullable();
$table->timestamps();
});
}
public function down(): void
{
Schema::dropIfExists('gurus');
}
};