28 lines
710 B
PHP
28 lines
710 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('absensi', function (Blueprint $table) {
|
|
$table->id();
|
|
|
|
$table->foreignId('guru_id')->constrained()->cascadeOnDelete();
|
|
$table->foreignId('kelas_id')->constrained()->cascadeOnDelete();
|
|
$table->foreignId('mapel_id')->constrained()->cascadeOnDelete();
|
|
|
|
$table->date('tanggal');
|
|
|
|
$table->timestamps();
|
|
});
|
|
}
|
|
|
|
public function down(): void
|
|
{
|
|
Schema::dropIfExists('absensi');
|
|
}
|
|
};
|