Skip to content

Commit 8268074

Browse files
committed
Add default payment provider
1 parent bd7e195 commit 8268074

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

backend/database/migrations/2025_01_20_035401_add_default_payment_provider.php

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -8,8 +8,8 @@
88
public function up(): void
99
{
1010
DB::table('event_settings')
11-
->whereNull('payment_provider')
12-
->update(['payment_provider' => [PaymentProviders::STRIPE->name]]);
11+
->whereNull('payment_providers')
12+
->update(['payment_providers' => [PaymentProviders::STRIPE->name]]);
1313
}
1414

1515
public function down(): void

0 commit comments

Comments
 (0)