Can now send webhook messages.

This commit is contained in:
James Cole
2020-12-02 19:30:09 +01:00
parent 35c9367819
commit eb80578e30
8 changed files with 162 additions and 7 deletions

View File

@@ -138,6 +138,7 @@ class ChangesForV550 extends Migration
$table->integer('webhook_id', false, true);
$table->boolean('sent')->default(false);
$table->boolean('errored')->default(false);
$table->unsignedTinyInteger('attempts')->default(0);
$table->string('uuid',64);
$table->longText('message');
$table->longText('logs')->nullable();