Skip to content

Commit

Permalink
fix: add nullable (#163)
Browse files Browse the repository at this point in the history
  • Loading branch information
64knl authored Nov 17, 2023
1 parent a9b4a34 commit 7e40f53
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@
public function up(): void
{
Schema::table('menu', function (Blueprint $table) {
$table->timestamp('created_at');
$table->timestamp('created_at')->nullable();
});
}

Expand Down

0 comments on commit 7e40f53

Please sign in to comment.