id(); $table->string('code', 10)->unique(); $table->string('name', 100); $table->string('degree_level', 10)->nullable()->default('S1'); $table->timestamps(); $table->softDeletes(); }); } public function down(): void { Schema::dropIfExists('departments'); } };