Aleksander Machniak
2014-04-29 08953a46d95e0165f0bccf9391254ca03195e0ec
Fix too small length of users.preferences column data type on MySQL
4 files added
5 files modified
17 ■■■■■ changed files
CHANGELOG 3 ●●●● patch | view | raw | blame | history
SQL/mssql.initial.sql 2 ●●● patch | view | raw | blame | history
SQL/mssql/2014042900.sql 1 ●●●● patch | view | raw | blame | history
SQL/mysql.initial.sql 4 ●●●● patch | view | raw | blame | history
SQL/mysql/2014042900.sql 1 ●●●● patch | view | raw | blame | history
SQL/postgres.initial.sql 2 ●●● patch | view | raw | blame | history
SQL/postgres/2014042900.sql 1 ●●●● patch | view | raw | blame | history
SQL/sqlite.initial.sql 2 ●●● patch | view | raw | blame | history
SQL/sqlite/2014042900.sql 1 ●●●● patch | view | raw | blame | history
CHANGELOG
@@ -17,7 +17,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
-------------
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
SQL/mssql/2014042900.sql
New file
@@ -0,0 +1 @@
-- empty
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');
SQL/mysql/2014042900.sql
New file
@@ -0,0 +1 @@
ALTER TABLE `users` CHANGE `preferences` `preferences` longtext;
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');
SQL/postgres/2014042900.sql
New file
@@ -0,0 +1 @@
-- empty
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');
SQL/sqlite/2014042900.sql
New file
@@ -0,0 +1 @@
-- empty