Files
einundzwanzig-app/database/migrations/2022_12_04_154911_create_podcasts_table.php
2025-11-21 04:28:08 +01:00

37 lines
854 B
PHP

<?php
use Illuminate\Database\Migrations\Migration;
use Illuminate\Database\Schema\Blueprint;
use Illuminate\Support\Facades\Schema;
return new class extends Migration
{
/**
* Run the migrations.
*/
public function up(): void
{
Schema::create('podcasts', function (Blueprint $table) {
$table->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');
}
};