mirror of
https://github.com/HolgerHatGarKeineNode/einundzwanzig-app.git
synced 2025-12-14 12:06:46 +00:00
🚀 initial commit
This commit is contained in:
@@ -0,0 +1,36 @@
|
||||
<?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');
|
||||
}
|
||||
};
|
||||
Reference in New Issue
Block a user