feat: add plugin model

initial implementation of playlist

feat: added support for playlists
This commit is contained in:
Benjamin Nussbaum 2025-03-11 22:34:28 +01:00
parent 276511fc98
commit 4195269414
17 changed files with 669 additions and 15 deletions

View file

@ -0,0 +1,33 @@
<?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('playlists', function (Blueprint $table) {
$table->id();
$table->foreignId('device_id')->constrained()->onDelete('cascade');
$table->string('name');
$table->boolean('is_active')->default(true);
$table->json('weekdays')->nullable(); // Array of weekday numbers (0-6)
$table->time('active_from')->nullable();
$table->time('active_until')->nullable();
$table->timestamps();
});
}
/**
* Reverse the migrations.
*/
public function down(): void
{
Schema::dropIfExists('playlists');
}
};

View file

@ -0,0 +1,32 @@
<?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('playlist_items', function (Blueprint $table) {
$table->id();
$table->foreignId('playlist_id')->constrained()->onDelete('cascade');
$table->foreignId('plugin_id')->constrained()->onDelete('cascade');
$table->integer('order')->default(0);
$table->boolean('is_active')->default(true);
$table->timestamp('last_displayed_at')->nullable();
$table->timestamps();
});
}
/**
* Reverse the migrations.
*/
public function down(): void
{
Schema::dropIfExists('playlist_items');
}
};