Skip to content

Commit

Permalink
Merge branch '4.2-dev' into feature/com_joomlaupdate_improvements
Browse files Browse the repository at this point in the history
  • Loading branch information
roland-d committed Jun 16, 2022
2 parents cc2c06b + 1e16355 commit c19a3fb
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 1 deletion.
Original file line number Diff line number Diff line change
@@ -0,0 +1,4 @@
--
-- Increase the size of the htmlbody field in the #__mail_templates table
--
ALTER TABLE `#__mail_templates` MODIFY `htmlbody` mediumtext NOT NULL COLLATE 'utf8mb4_unicode_ci';
2 changes: 1 addition & 1 deletion installation/sql/mysql/supports.sql
Original file line number Diff line number Diff line change
Expand Up @@ -399,7 +399,7 @@ CREATE TABLE IF NOT EXISTS `#__mail_templates` (
`language` char(7) NOT NULL DEFAULT '',
`subject` VARCHAR(255) NOT NULL DEFAULT '',
`body` TEXT NOT NULL,
`htmlbody` TEXT NOT NULL,
`htmlbody` MEDIUMTEXT NOT NULL,
`attachments` TEXT NOT NULL,
`params` TEXT NOT NULL,
PRIMARY KEY (`template_id`, `language`)
Expand Down

0 comments on commit c19a3fb

Please sign in to comment.