Skip to content

Commit 25cb61e

Browse files
authored
Merge pull request #10 from atfromhome/patch-update
Fixing migrations
2 parents 6c06e36 + f26c4d4 commit 25cb61e

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

database/migrations/create_model_upload_table.php

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -17,9 +17,8 @@ public function up(): void
1717
$table->string('file_name');
1818
$table->string('storage_disk');
1919
$table->string('file_path');
20-
$table->string('state', 50);
2120
$table->longText('error_message')->nullable();
22-
$table->longText('exception')->nullable();
21+
$table->string('state', 50);
2322
$table->timestamps();
2423
});
2524

@@ -32,6 +31,7 @@ public function up(): void
3231
$table->json('payload')->nullable();
3332
$table->json('meta')->nullable();
3433
$table->longText('error_message')->nullable();
34+
$table->longText('exception')->nullable();
3535
$table->string('model_id', 36)->nullable();
3636
$table->string('model_type')->nullable();
3737
$table->timestamps();

0 commit comments

Comments
 (0)