Skip to content

Commit

Permalink
docs: removed incorrect nullable modifier
Browse files Browse the repository at this point in the history
  • Loading branch information
tpetry committed Jan 25, 2025
1 parent e2e28d7 commit 968669e
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -1384,7 +1384,7 @@ return new class extends Migration
$table->bigInteger('website_id');
$table->text('url');
$table->float('duration');
$table->timestampTz('created_at')->nullable();
$table->timestampTz('created_at');

$table->primary(['id', 'created_at']);
$table->index(['website_id', 'created_at']);
Expand Down

0 comments on commit 968669e

Please sign in to comment.