Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion SQL/mysql.initial.sql
Original file line number Diff line number Diff line change
Expand Up @@ -272,4 +272,4 @@ CREATE TABLE `system` (

SET FOREIGN_KEY_CHECKS=1;

INSERT INTO `system` (`name`, `value`) VALUES ('roundcube-version', '2025092300');
INSERT INTO `system` (`name`, `value`) VALUES ('roundcube-version', '2026071900');
1 change: 1 addition & 0 deletions SQL/mysql/2026071900.sql
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
-- Postgres only
4 changes: 2 additions & 2 deletions SQL/postgres.initial.sql
Original file line number Diff line number Diff line change
Expand Up @@ -290,7 +290,7 @@ CREATE TABLE cache_messages (
user_id integer NOT NULL
REFERENCES users (user_id) ON DELETE CASCADE ON UPDATE CASCADE,
mailbox varchar(255) NOT NULL,
uid integer NOT NULL,
uid bigint NOT NULL,
expires timestamp with time zone,
data text NOT NULL,
flags integer NOT NULL DEFAULT 0,
Expand Down Expand Up @@ -390,4 +390,4 @@ CREATE TABLE "system" (
value text
);

INSERT INTO "system" (name, value) VALUES ('roundcube-version', '2025092300');
INSERT INTO "system" (name, value) VALUES ('roundcube-version', '2026071900');
1 change: 1 addition & 0 deletions SQL/postgres/2026071900.sql
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
ALTER TABLE "cache_messages" ALTER COLUMN uid TYPE bigint;
2 changes: 1 addition & 1 deletion SQL/sqlite.initial.sql
Original file line number Diff line number Diff line change
Expand Up @@ -274,4 +274,4 @@ CREATE TABLE system (
value text NOT NULL
);

INSERT INTO system (name, value) VALUES ('roundcube-version', '2025092300');
INSERT INTO system (name, value) VALUES ('roundcube-version', '2026071900');
1 change: 1 addition & 0 deletions SQL/sqlite/2026071900.sql
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
-- Postgres only
Loading