10 lines
171 B
SQL
10 lines
171 B
SQL
UPDATE
|
|
subscriptions
|
|
SET
|
|
attributes = jsonb_set(
|
|
attributes,
|
|
'{stripeAccountCountry}',
|
|
'"IN"'
|
|
)
|
|
WHERE
|
|
payment_provider = 'stripe';
|