TIF_E41202317/database/migrations/2024_06_04_103733_siswa.php

37 lines
882 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('siswas', function (Blueprint $table) {
$table->id();
$table->string('nisn');
$table->string('nama');
$table->string('kelas');
$table->string('alamat');
$table->integer('pengetahuan');
$table->integer('keterampilan');
$table->integer('sikap');
$table->integer('kehadiran');
$table->integer('hasil');
$table->timestamps();
});
}
/**
* Reverse the migrations.
*/
public function down(): void
{
Schema::dropIfExists('siswa');
}
};