mirror of
https://github.com/stack-auth/stack.git
synced 2026-06-27 21:01:03 +08:00
5 lines
199 B
SQL
5 lines
199 B
SQL
-- Some older versions allowed http:// URLs as trusted domains, instead of just https://.
|
|
-- We fix that.
|
|
|
|
UPDATE "ProjectDomain" SET "domain" = 'https://example.com' WHERE "domain" LIKE 'http://%';
|