database/migrations/2024_05_08_094243_create_podcast_related_tables.php

Summary

Maintainability
A
1 hr
Test Coverage

Method up has 39 lines of code (exceeds 25 allowed). Consider refactoring.
Open

    public function up(): void
    {
        Schema::create('podcasts', static function (Blueprint $table): void {
            $table->string('id', 36)->primary();
            $table->string('url')->unique()->comment('The URL to the podcast feed')->unique();

    There are no issues that match your filters.

    Category
    Status