From c441381229c2348cf93181a4f9ad005081bd6f2d Mon Sep 17 00:00:00 2001 From: soeren Date: Sun, 7 Dec 2025 20:04:44 +0100 Subject: [PATCH] fixed migration --- ..._07_160306_add_sparkbooth_credentials_to_galleries_table.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/database/migrations/2025_12_07_160306_add_sparkbooth_credentials_to_galleries_table.php b/database/migrations/2025_12_07_160306_add_sparkbooth_credentials_to_galleries_table.php index f41f2a4..02396b2 100644 --- a/database/migrations/2025_12_07_160306_add_sparkbooth_credentials_to_galleries_table.php +++ b/database/migrations/2025_12_07_160306_add_sparkbooth_credentials_to_galleries_table.php @@ -12,7 +12,7 @@ return new class extends Migration public function up(): void { Schema::table('galleries', function (Blueprint $table): void { - $table->string('sparkbooth_username')->nullable()->after('upload_token_expires_at'); + $table->string('sparkbooth_username')->nullable()->after('access_duration_minutes'); $table->text('sparkbooth_password')->nullable()->after('sparkbooth_username'); $table->string('sparkbooth_response_format', 10)->default('json')->after('sparkbooth_password');