AddOptionalStep::down PHP Метод

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

Reverse the migrations.
public down ( )
    public function down()
    {
        Schema::table('servers', function (Blueprint $table) {
            $table->dropColumn('deploy_code');
        });
        Schema::table('commands', function (Blueprint $table) {
            $table->dropColumn('optional');
        });
    }
AddOptionalStep