increments('id'); $table->string('name'); $table->boolean('status'); $table->integer('team_lead')->unsigned()->nullable()->index('team_lead'); $table->boolean('assign_alert'); $table->string('admin_notes'); $table->timestamps(); }); } /** * Reverse the migrations. * * @return void */ public function down() { Schema::drop('teams'); } }