Can generate webhook messages for creating transactions.

This commit is contained in:
James Cole
2020-12-02 06:54:13 +01:00
parent e27e0a97a7
commit cbe046ba07
11 changed files with 363 additions and 21 deletions

View File

@@ -140,6 +140,7 @@ class ChangesForV550 extends Migration
$table->boolean('errored')->default(false);
$table->string('uuid',64);
$table->longText('message');
$table->longText('logs')->nullable();
$table->foreign('webhook_id')->references('id')->on('webhooks')->onDelete('cascade');
}
);