Skip to content

Commit

Permalink
Update create_media_table.php.stub (#3578)
Browse files Browse the repository at this point in the history
Fix: argument matches the parameter's default value
  • Loading branch information
farishrf authored Mar 30, 2024
1 parent 5c4aa61 commit 8b0a45b
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion database/migrations/create_media_table.php.stub
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ return new class extends Migration
$table->id();

$table->morphs('model');
$table->uuid('uuid')->nullable()->unique();
$table->uuid()->nullable()->unique();
$table->string('collection_name');
$table->string('name');
$table->string('file_name');
Expand Down

0 comments on commit 8b0a45b

Please sign in to comment.