id(); $table->string('guid') ->unique(); $table->boolean('locked') ->default(true); $table->string('title'); $table->string('link'); $table->string('language_code'); $table->json('data') ->nullable(); $table->timestamps(); }); } /** * Reverse the migrations. */ public function down(): void { Schema::dropIfExists('podcasts'); } };