Skip to content

Commit

Permalink
wip
Browse files Browse the repository at this point in the history
  • Loading branch information
datlechin committed Aug 4, 2024
1 parent 193ba83 commit 281736e
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions database/migrations/create_menus_table.php.stub
Original file line number Diff line number Diff line change
Expand Up @@ -40,8 +40,8 @@ return new class extends Migration

public function down(): void
{
Schema::dropIfExists('menu_locations');
Schema::dropIfExists('menu_items');
Schema::dropIfExists('menus');
Schema::dropIfExists(config('filament-menu-builder.tables.menu_locations'));
Schema::dropIfExists(config('filament-menu-builder.tables.menu_items'));
Schema::dropIfExists(config('filament-menu-builder.tables.menus'));
}
};

0 comments on commit 281736e

Please sign in to comment.