36 lines
1013 B
PHP
36 lines
1013 B
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('mengajar', function (Blueprint $table) {
|
|
$table->bigIncrements('id_mengajar');
|
|
|
|
$table->unsignedBigInteger('id_kelas');
|
|
$table->unsignedBigInteger('id_guru');
|
|
$table->unsignedBigInteger('id_mapel');
|
|
|
|
$table->foreign('id_guru')->references('nip')->on('guru')->onDelete('cascade');
|
|
$table->foreign('id_kelas')->references('id_kelas')->on('kelas')->onDelete('cascade');
|
|
$table->foreign('id_mapel')->references('id_mapel')->on('mata_pelajaran')->onDelete('cascade');
|
|
$table->timestamps();
|
|
});
|
|
}
|
|
|
|
/**
|
|
* Reverse the migrations.
|
|
*/
|
|
public function down(): void
|
|
{
|
|
Schema::dropIfExists('mengajar');
|
|
}
|
|
};
|