AddGroupIndexToTranslations::down PHP Метод

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

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