Files
sub2api/backend/migrations/186_alipay_mobile_precreate_deep_link.sql
T

5 lines
211 B
SQL
Raw Normal View History

-- Mobile Alipay keeps the legacy WAP flow unless this opt-in is enabled.
INSERT INTO settings (key, value, updated_at)
VALUES ('ALIPAY_MOBILE_PRECREATE_DEEP_LINK', 'false', NOW())
ON CONFLICT (key) DO NOTHING;