AddIndexOnSlackId::down PHP Метод

down() публичный Метод

Reverse the migrations.
public down ( ) : void
Результат void
    public function down()
    {
        Schema::table('osu_slack_users', function ($table) {
            $table->dropIndex('osu_slack_users_slack_id_index');
        });
    }
AddIndexOnSlackId