id(); $table->string('nama'); $table->string('nis')->unique(); $table->string('kelas'); $table->unsignedBigInteger('wali_kelas_id'); $table->timestamps(); }); } /** * Reverse the migrations. */ public function down(): void { Schema::dropIfExists('siswa'); } };