database/migrations/2024_05_08_094243_create_podcast_related_tables.php
Method up
has 39 lines of code (exceeds 25 allowed). Consider refactoring. Open
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();