mirror of
https://github.com/roundcube/roundcubemail.git
synced 2026-02-20 01:21:20 +01:00
Fix too small length of users.preferences column data type on MySQL
This commit is contained in:
@@ -30,7 +30,8 @@ CHANGELOG Roundcube Webmail
|
||||
- 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
|
||||
-------------
|
||||
|
||||
@@ -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
|
||||
|
||||
1
SQL/mssql/2014042900.sql
Normal file
1
SQL/mssql/2014042900.sql
Normal file
@@ -0,0 +1 @@
|
||||
-- empty
|
||||
@@ -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');
|
||||
|
||||
1
SQL/mysql/2014042900.sql
Normal file
1
SQL/mysql/2014042900.sql
Normal file
@@ -0,0 +1 @@
|
||||
ALTER TABLE `users` CHANGE `preferences` `preferences` longtext;
|
||||
@@ -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');
|
||||
|
||||
1
SQL/postgres/2014042900.sql
Normal file
1
SQL/postgres/2014042900.sql
Normal file
@@ -0,0 +1 @@
|
||||
-- empty
|
||||
@@ -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');
|
||||
|
||||
1
SQL/sqlite/2014042900.sql
Normal file
1
SQL/sqlite/2014042900.sql
Normal file
@@ -0,0 +1 @@
|
||||
-- empty
|
||||
Reference in New Issue
Block a user