locked podcasts

This commit is contained in:
Benjamin Takats
2022-12-06 21:38:08 +01:00
parent 87010aabb9
commit caac426701
4 changed files with 27 additions and 9 deletions

View File

@@ -16,10 +16,13 @@ class CreatePodcastsTable extends Migration
$table->id();
$table->string('guid')
->unique();
$table->boolean('locked')
->default(true);
$table->string('title');
$table->string('link');
$table->string('language_code');
$table->json('data');
$table->json('data')
->nullable();
$table->timestamps();
});
}