ente/server/migrations/48_add_stripe_account.up.sql

11 lines
171 B
MySQL
Raw Normal View History

2024-03-01 08:07:01 +00:00
UPDATE
subscriptions
SET
attributes = jsonb_set(
attributes,
'{stripeAccountCountry}',
'"IN"'
)
WHERE
payment_provider = 'stripe';