26 lines
629 B
PHP
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');
|
|
}
|
|
};
|