id(); $table->string('name'); $table->timestamps(); }); // Insert predefined departments // DB::table('departments')->insert([ // ['name' => 'Computer Engineering'], // ['name' => 'Information Technology'], // ['name' => 'Mechanical Engineering'], // ['name' => 'Electrical Engineering'], // ['name' => 'Civil Engineering'] // ]); } /** * Reverse the migrations. */ public function down(): void { Schema::dropIfExists('departments'); } };