XmlInterface

This commit is contained in:
David Bomba
2025-08-08 13:17:06 +10:00
parent 14fd4063f5
commit b94316dbed
12 changed files with 337 additions and 192 deletions

View File

@@ -23,7 +23,8 @@ return new class extends Migration
$table->string('previous_hash')->nullable();
$table->string('status');
$table->json('response')->nullable();;
$table->json('response')->nullable();
$table->text('state')->nullable();
$table->timestamps();
$table->foreign('company_id')->references('id')->on('companies')->onDelete('cascade')->onUpdate('cascade');