id(); $table->string('department_id'); $table->string('department_name'); $table->string('alias'); $table->string('manager'); }); } /** * Reverse the migrations. * * @return void */ public function down() { Schema::dropIfExists('departments'); } };