AddIndexOnSlackId::down PHP Method

down() public method

Reverse the migrations.
public down ( ) : void
return void
    public function down()
    {
        Schema::table('osu_slack_users', function ($table) {
            $table->dropIndex('osu_slack_users_slack_id_index');
        });
    }
AddIndexOnSlackId