We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 320e584 commit f26c4d4Copy full SHA for f26c4d4
database/migrations/create_model_upload_table.php
@@ -17,9 +17,8 @@ public function up(): void
17
$table->string('file_name');
18
$table->string('storage_disk');
19
$table->string('file_path');
20
- $table->string('state', 50);
21
$table->longText('error_message')->nullable();
22
- $table->longText('exception')->nullable();
+ $table->string('state', 50);
23
$table->timestamps();
24
});
25
@@ -32,6 +31,7 @@ public function up(): void
32
31
$table->json('payload')->nullable();
33
$table->json('meta')->nullable();
34
+ $table->longText('exception')->nullable();
35
$table->string('model_id', 36)->nullable();
36
$table->string('model_type')->nullable();
37
0 commit comments