mirror of
https://github.com/HolgerHatGarKeineNode/einundzwanzig-app.git
synced 2025-12-13 11:46:47 +00:00
37 lines
854 B
PHP
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');
|
|
}
|
|
};
|