id(); $table->foreignId('device_id')->nullable()->constrained('devices')->nullOnDelete(); $table->foreignId('user_id')->constrained('users')->cascadeOnDelete(); $table->text('payload')->nullable(); $table->text('hook')->nullable(); $table->integer('status')->default('2'); //2 pending 1 sent 0 failed $table->integer('status_code')->nullable(); //2 pending 1 sent 0 failed $table->timestamps(); }); } /** * Reverse the migrations. */ public function down(): void { Schema::dropIfExists('webhooks'); } };