fixed migration

This commit is contained in:
2025-12-07 20:04:44 +01:00
parent ca784fe26a
commit c441381229

View File

@@ -12,7 +12,7 @@ return new class extends Migration
public function up(): void public function up(): void
{ {
Schema::table('galleries', function (Blueprint $table): 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->text('sparkbooth_password')->nullable()->after('sparkbooth_username');
$table->string('sparkbooth_response_format', 10)->default('json')->after('sparkbooth_password'); $table->string('sparkbooth_response_format', 10)->default('json')->after('sparkbooth_password');