increments('id'); $table->timestamps(); $table->integer('team_id'); $table->string('name', 255); $table->string('twitter', 255); $table->string('photo', 255); }); } /** * Reverse the migrations. * * @return void */ public function down() { Schema::dropIfExists('players'); } }