Skip to content

Commit

Permalink
Merge pull request #47 from alexjustesen/patch-1
Browse files Browse the repository at this point in the history
  • Loading branch information
overtrue authored Apr 24, 2024
2 parents b494c2e + bf5321a commit fe618e8
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions migrations/2018_12_14_000000_create_favorites_table.php
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@
/**
* Run the migrations.
*/
public function up()
public function up(): void
{
Schema::create(config('favorite.favorites_table'), function (Blueprint $table) {
$table->id();
Expand All @@ -22,7 +22,7 @@ public function up()
/**
* Reverse the migrations.
*/
public function down()
public function down(): void
{
Schema::dropIfExists(config('favorite.favorites_table'));
}
Expand Down

0 comments on commit fe618e8

Please sign in to comment.