Skip to content

Commit

Permalink
Update 100000_create_opening_hours_table.php
Browse files Browse the repository at this point in the history
  • Loading branch information
trippo authored Aug 23, 2024
1 parent 1f4695a commit 8deba22
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion database/migrations/100000_create_opening_hours_table.php
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ public function up(): void
Schema::create('opening_hours', static function (Blueprint $table): void {
$table->id();
$table->nullableMorphs('openable');
$table->string('name');
$table->string('name')->nullable();
$table->timestamps();
});
}
Expand Down

0 comments on commit 8deba22

Please sign in to comment.