Fix syntax error in DDL scripts for Postgres (#10052)
Some checks failed
E2E / Linux / PHP ${{ matrix.php }} (8.1) (push) Waiting to run
E2E / Linux / PHP ${{ matrix.php }} (8.5) (push) Waiting to run
CI / Coding Style (push) Waiting to run
CI / Static Analysis (push) Waiting to run
Message Rendering / Linux / PHP ${{ matrix.php }} (8.3) (push) Waiting to run
Message Rendering / Linux / PHP ${{ matrix.php }} (8.4) (push) Waiting to run
Message Rendering / Linux / PHP ${{ matrix.php }} (8.5) (push) Waiting to run
Unit / Linux / PHP ${{ matrix.php }} (8.1) (push) Waiting to run
Unit / Linux / PHP ${{ matrix.php }} (8.2) (push) Waiting to run
Unit / Linux / PHP ${{ matrix.php }} (8.3) (push) Waiting to run
Unit / Linux / PHP ${{ matrix.php }} (8.4) (push) Waiting to run
Unit / Linux / PHP ${{ matrix.php }} (8.5) (push) Waiting to run
Unit / Windows / PHP ${{ matrix.php }} (8.1) (push) Waiting to run
Unit / Windows / PHP ${{ matrix.php }} (8.2) (push) Waiting to run
Unit / Windows / PHP ${{ matrix.php }} (8.3) (push) Waiting to run
Unit / Windows / PHP ${{ matrix.php }} (8.4) (push) Waiting to run
Unit / Windows / PHP ${{ matrix.php }} (8.5) (push) Waiting to run
roundcubemail-testrunner image / build and push with PHP ${{ matrix.php }} (8.3) (push) Has been cancelled
roundcubemail-testrunner image / build and push with PHP ${{ matrix.php }} (8.4) (push) Has been cancelled
roundcubemail-testrunner image / build and push with PHP ${{ matrix.php }} (8.5-rc) (push) Has been cancelled

This commit is contained in:
Aleksander Machniak 2025-12-14 12:30:50 +01:00
parent dc4ffea1d0
commit 366ad7a174
2 changed files with 4 additions and 3 deletions

View File

@ -4,6 +4,7 @@ This file includes only changes we consider noteworthy for users, admins and plu
## Unreleased ## Unreleased
- Fix syntax error in DDL scripts for Postgres (#10052)
- Fix Cross-Site-Scripting vulnerability via SVG's animate tag - Fix Cross-Site-Scripting vulnerability via SVG's animate tag
- Fix Information Disclosure vulnerability in the HTML style sanitizer - Fix Information Disclosure vulnerability in the HTML style sanitizer

View File

@ -1,3 +1,3 @@
ALTER TABLE `session` RENAME COLUMN `changed` TO `expires_at`; ALTER TABLE "session" RENAME COLUMN changed TO expires_at;
ALTER TABLE `session` RENAME INDEX `session_changed_idx` TO `session_expires_at_idx`; ALTER TABLE "session" RENAME INDEX session_changed_idx TO session_expires_at_idx;
UPDATE session SET expires_at = expires_at + INTERVAL '10 minutes'; UPDATE "session" SET expires_at = expires_at + INTERVAL '10 minutes';