You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
db-schema/db_scripts/diff/15054.up

8 lines
196 B

USE billing;
UPDATE billing.billing_mappings m SET
m.billing_profile_id = (
SELECT id FROM billing.billing_profiles p WHERE p.handle = 'default'
)
WHERE m.billing_profile_id IS NULL;