ente/server/migrations/48_add_stripe_account.up.sql
2024-03-01 13:37:01 +05:30

11 lines
171 B
SQL

UPDATE
subscriptions
SET
attributes = jsonb_set(
attributes,
'{stripeAccountCountry}',
'"IN"'
)
WHERE
payment_provider = 'stripe';