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');