increments('id'); $table->string('name'); $table->string('education'); $table->string('description')->nullable(); $table->softDeletes(); $table->timestamps(); }); } /** * Reverse the migrations. * * @return void */ public function down() { Schema::dropIfExists('teams'); } }