id(); $table->string('name'); $table->string('nim')->unique(); $table->string('image')->nullable(); $table->foreignId('major_id')->constrained('majors')->cascadeOnDelete(); $table->string('email')->unique(); $table->string('phone')->nullable(); $table->foreignId('peleton_id')->constrained('peletons'); $table->timestamps(); }); } /** * Reverse the migrations. */ public function down(): void { Schema::dropIfExists('students'); } };