From b6f7304d69918e31dd701d4c041169aa05934aee Mon Sep 17 00:00:00 2001 From: Aleksander Machniak Date: Tue, 29 Apr 2014 12:12:26 +0200 Subject: Fix too small length of users.preferences column data type on MySQL --- SQL/mssql.initial.sql | 2 +- SQL/mssql/2014042900.sql | 1 + SQL/mysql.initial.sql | 4 ++-- SQL/mysql/2014042900.sql | 1 + SQL/postgres.initial.sql | 2 +- SQL/postgres/2014042900.sql | 1 + SQL/sqlite.initial.sql | 2 +- SQL/sqlite/2014042900.sql | 1 + 8 files changed, 9 insertions(+), 5 deletions(-) create mode 100644 SQL/mssql/2014042900.sql create mode 100644 SQL/mysql/2014042900.sql create mode 100644 SQL/postgres/2014042900.sql create mode 100644 SQL/sqlite/2014042900.sql (limited to 'SQL') diff --git a/SQL/mssql.initial.sql b/SQL/mssql.initial.sql index 9d0521c36..a6132b15c 100644 --- a/SQL/mssql.initial.sql +++ b/SQL/mssql.initial.sql @@ -393,6 +393,6 @@ CREATE TRIGGER [contact_delete_member] ON [dbo].[contacts] WHERE [contact_id] IN (SELECT [contact_id] FROM deleted) GO -INSERT INTO [dbo].[system] ([name], [value]) VALUES ('roundcube-version', '2013061000') +INSERT INTO [dbo].[system] ([name], [value]) VALUES ('roundcube-version', '2014042900') GO \ No newline at end of file diff --git a/SQL/mssql/2014042900.sql b/SQL/mssql/2014042900.sql new file mode 100644 index 000000000..fe6741a02 --- /dev/null +++ b/SQL/mssql/2014042900.sql @@ -0,0 +1 @@ +-- empty \ No newline at end of file diff --git a/SQL/mysql.initial.sql b/SQL/mysql.initial.sql index 4e4833a62..f174dc55f 100644 --- a/SQL/mysql.initial.sql +++ b/SQL/mysql.initial.sql @@ -25,7 +25,7 @@ CREATE TABLE `users` ( `created` datetime NOT NULL DEFAULT '1000-01-01 00:00:00', `last_login` datetime DEFAULT NULL, `language` varchar(5), - `preferences` text, + `preferences` longtext, PRIMARY KEY(`user_id`), UNIQUE `username` (`username`, `mail_host`) ) /*!40000 ENGINE=INNODB */ /*!40101 CHARACTER SET utf8 COLLATE utf8_general_ci */; @@ -209,4 +209,4 @@ CREATE TABLE `system` ( /*!40014 SET FOREIGN_KEY_CHECKS=1 */; -INSERT INTO system (name, value) VALUES ('roundcube-version', '2013061000'); +INSERT INTO system (name, value) VALUES ('roundcube-version', '2014042900'); diff --git a/SQL/mysql/2014042900.sql b/SQL/mysql/2014042900.sql new file mode 100644 index 000000000..9d93716d1 --- /dev/null +++ b/SQL/mysql/2014042900.sql @@ -0,0 +1 @@ +ALTER TABLE `users` CHANGE `preferences` `preferences` longtext; diff --git a/SQL/postgres.initial.sql b/SQL/postgres.initial.sql index f18cb6ad0..238c3a657 100644 --- a/SQL/postgres.initial.sql +++ b/SQL/postgres.initial.sql @@ -290,4 +290,4 @@ CREATE TABLE "system" ( value text ); -INSERT INTO system (name, value) VALUES ('roundcube-version', '2013061000'); +INSERT INTO system (name, value) VALUES ('roundcube-version', '2014042900'); diff --git a/SQL/postgres/2014042900.sql b/SQL/postgres/2014042900.sql new file mode 100644 index 000000000..fe6741a02 --- /dev/null +++ b/SQL/postgres/2014042900.sql @@ -0,0 +1 @@ +-- empty \ No newline at end of file diff --git a/SQL/sqlite.initial.sql b/SQL/sqlite.initial.sql index e7f74ddfc..897e3af20 100644 --- a/SQL/sqlite.initial.sql +++ b/SQL/sqlite.initial.sql @@ -201,4 +201,4 @@ CREATE TABLE system ( value text NOT NULL ); -INSERT INTO system (name, value) VALUES ('roundcube-version', '2013061000'); +INSERT INTO system (name, value) VALUES ('roundcube-version', '2014042900'); diff --git a/SQL/sqlite/2014042900.sql b/SQL/sqlite/2014042900.sql new file mode 100644 index 000000000..fe6741a02 --- /dev/null +++ b/SQL/sqlite/2014042900.sql @@ -0,0 +1 @@ +-- empty \ No newline at end of file -- cgit v1.2.3