Replace transaction collector.

This commit is contained in:
James Cole
2019-05-29 18:28:28 +02:00
parent 627ef09f11
commit d13317095f
10 changed files with 648 additions and 220 deletions

View File

@@ -26,6 +26,9 @@ class ChangesForV480 extends Migration
$table->dropColumn('transaction_group_id');
}
);
Schema::table('rule_groups', function (Blueprint $table) {
$table->dropColumn('stop_processing');
});
}
/**
@@ -50,5 +53,8 @@ class ChangesForV480 extends Migration
$table->foreign('transaction_group_id')->references('id')->on('transaction_groups')->onDelete('cascade');
}
);
Schema::table('rule_groups', function (Blueprint $table) {
$table->boolean('stop_processing')->default(false);
});
}
}