Aleksander Machniak
2015-03-08 f06f4b8424d33e1e06d9f99aa6f2cbc4b5f252e3
Fix storing signatures with big images in MySQL database (#1490306)
5 files added
6 files modified
18 ■■■■■ changed files
CHANGELOG 1 ●●●● patch | view | raw | blame | history
SQL/mssql.initial.sql 2 ●●● patch | view | raw | blame | history
SQL/mssql/2015030800.sql 1 ●●●● patch | view | raw | blame | history
SQL/mysql.initial.sql 4 ●●●● patch | view | raw | blame | history
SQL/mysql/2015030800.sql 1 ●●●● patch | view | raw | blame | history
SQL/oracle.initial.sql 2 ●●● patch | view | raw | blame | history
SQL/oracle/2015030800.sql 1 ●●●● patch | view | raw | blame | history
SQL/postgres.initial.sql 2 ●●● patch | view | raw | blame | history
SQL/postgres/2015030800.sql 1 ●●●● patch | view | raw | blame | history
SQL/sqlite.initial.sql 2 ●●● patch | view | raw | blame | history
SQL/sqlite/2015030800.sql 1 ●●●● patch | view | raw | blame | history
CHANGELOG
@@ -28,6 +28,7 @@
- Fix javascript error after creating a folder which is a subfolder of another one (#1490297)
- Fix bug where subject of sent/saved message was removed if mbstring wasn't installed (#1490295)
- Fix missing vcard_attachment icon on messages list (#1490303)
- Fix storing signatures with big images in MySQL database (#1490306)
RELEASE 1.1.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', '2014042900')
INSERT INTO [dbo].[system] ([name], [value]) VALUES ('roundcube-version', '2015030800')
GO
SQL/mssql/2015030800.sql
New file
@@ -0,0 +1 @@
-- empty
SQL/mysql.initial.sql
@@ -162,7 +162,7 @@
 `email` varchar(128) NOT NULL,
 `reply-to` varchar(128) NOT NULL DEFAULT '',
 `bcc` varchar(128) NOT NULL DEFAULT '',
 `signature` text,
 `signature` longtext,
 `html_signature` tinyint(1) NOT NULL DEFAULT '0',
 PRIMARY KEY(`identity_id`),
 CONSTRAINT `user_id_fk_identities` FOREIGN KEY (`user_id`)
@@ -209,4 +209,4 @@
/*!40014 SET FOREIGN_KEY_CHECKS=1 */;
INSERT INTO system (name, value) VALUES ('roundcube-version', '2014042900');
INSERT INTO system (name, value) VALUES ('roundcube-version', '2015030800');
SQL/mysql/2015030800.sql
New file
@@ -0,0 +1 @@
ALTER TABLE `identities` CHANGE `signature` `signature` longtext;
SQL/oracle.initial.sql
@@ -218,4 +218,4 @@
    "value" long
);
INSERT INTO "system" ("name", "value") VALUES ('roundcube-version', '2014042900');
INSERT INTO "system" ("name", "value") VALUES ('roundcube-version', '2015030800');
SQL/oracle/2015030800.sql
New file
@@ -0,0 +1 @@
-- empty
SQL/postgres.initial.sql
@@ -290,4 +290,4 @@
    value text
);
INSERT INTO system (name, value) VALUES ('roundcube-version', '2014042900');
INSERT INTO system (name, value) VALUES ('roundcube-version', '2015030800');
SQL/postgres/2015030800.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', '2014042900');
INSERT INTO system (name, value) VALUES ('roundcube-version', '2015030800');
SQL/sqlite/2015030800.sql
New file
@@ -0,0 +1 @@
-- empty