From b6f7304d69918e31dd701d4c041169aa05934aee Mon Sep 17 00:00:00 2001
From: Aleksander Machniak <alec@alec.pl>
Date: Tue, 29 Apr 2014 06:12:26 -0400
Subject: [PATCH] Fix too small length of users.preferences column data type on MySQL
---
CHANGELOG | 3 ++-
SQL/postgres/2014042900.sql | 1 +
SQL/sqlite/2014042900.sql | 1 +
SQL/postgres.initial.sql | 2 +-
SQL/mssql/2014042900.sql | 1 +
SQL/mysql.initial.sql | 4 ++--
SQL/mysql/2014042900.sql | 1 +
SQL/sqlite.initial.sql | 2 +-
SQL/mssql.initial.sql | 2 +-
9 files changed, 11 insertions(+), 6 deletions(-)
diff --git a/CHANGELOG b/CHANGELOG
index 5b307b8..b032658 100644
--- a/CHANGELOG
+++ b/CHANGELOG
@@ -30,7 +30,8 @@
- Avoid popupmenus being closed when scrollbar is clicked (#1489832)
- Add proxy_whitelist configuration option (#1489729)
- Fix identities_level=4 handling in new_user_dialog plugin (#1489840)
-- Fix varius db_prefix issues (#1489839)
+- Fix various db_prefix issues (#1489839)
+- Fix too small length of users.preferences column data type on MySQL
RELEASE 1.0.0
-------------
diff --git a/SQL/mssql.initial.sql b/SQL/mssql.initial.sql
index 9d0521c..a6132b1 100644
--- a/SQL/mssql.initial.sql
+++ b/SQL/mssql.initial.sql
@@ -393,6 +393,6 @@
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 0000000..fe6741a
--- /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 4e4833a..f174dc5 100644
--- a/SQL/mysql.initial.sql
+++ b/SQL/mysql.initial.sql
@@ -25,7 +25,7 @@
`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 @@
/*!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 0000000..9d93716
--- /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 f18cb6a..238c3a6 100644
--- a/SQL/postgres.initial.sql
+++ b/SQL/postgres.initial.sql
@@ -290,4 +290,4 @@
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 0000000..fe6741a
--- /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 e7f74dd..897e3af 100644
--- a/SQL/sqlite.initial.sql
+++ b/SQL/sqlite.initial.sql
@@ -201,4 +201,4 @@
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 0000000..fe6741a
--- /dev/null
+++ b/SQL/sqlite/2014042900.sql
@@ -0,0 +1 @@
+-- empty
\ No newline at end of file
--
Gitblit v1.9.1