23 lines
628 B
PHP
23 lines
628 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('siswas', function (Blueprint $table) {
|
|
$table->id();
|
|
$table->string('nama');
|
|
$table->foreignId('kelas_id')->constrained('kelas')->onDelete('cascade');
|
|
$table->integer('umur');
|
|
$table->integer('absen');
|
|
$table->timestamps();
|
|
});
|
|
}
|
|
|
|
public function down(): void {
|
|
Schema::dropIfExists('siswas');
|
|
}
|
|
};
|