- Installed p7h/nas-file-manager package via private VCS repo - Published config/nas-file-manager.php with super_admin middleware restriction - Added NAS env vars to .env.example - Created admin/nas-storage page with connection info panel and file browser widget - Added NAS Storage link to admin sidebar (super_admin only) - Added SuperAdminController@nasStorage method and admin.nas-storage route - Includes all accumulated branch changes: profile wall, 2FA, audit logs, settings panel, country/phone/timezone components, posts, slideshow, playlist shares, video downloads/shares, comment likes, notifications, social links, and more Co-Authored-By: Claude Sonnet 4.6 <noreply@anthropic.com>
35 lines
966 B
PHP
35 lines
966 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('video_slides', function (Blueprint $table) {
|
|
$table->id();
|
|
$table->foreignId('video_id')->constrained()->cascadeOnDelete();
|
|
$table->string('filename');
|
|
$table->unsignedSmallInteger('position')->default(0);
|
|
$table->timestamps();
|
|
});
|
|
|
|
Schema::table('videos', function (Blueprint $table) {
|
|
$table->string('slideshow_video_path')->nullable()->after('thumbnail');
|
|
});
|
|
}
|
|
|
|
public function down(): void
|
|
{
|
|
Schema::dropIfExists('video_slides');
|
|
Schema::table('videos', function (Blueprint $table) {
|
|
$table->dropColumn('slideshow_video_path');
|
|
});
|
|
}
|
|
};
|