Skip to content

Commit

Permalink
[5.3] Change type of field "fieldparams" in table #_fields from text …
Browse files Browse the repository at this point in the history
…to mediumtext (#44238)

* mediumtext

* Update administrator/components/com_admin/sql/updates/mysql/5.3.0-2024-10-13.sql

Co-authored-by: Richard Fath <richard67@users.noreply.github.com>
  • Loading branch information
alikon and richard67 authored Oct 14, 2024
1 parent 1663f79 commit a5ace8d
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 1 deletion.
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
ALTER TABLE `#__fields` MODIFY `fieldparams` MEDIUMTEXT NOT NULL;
2 changes: 1 addition & 1 deletion installation/sql/mysql/supports.sql
Original file line number Diff line number Diff line change
Expand Up @@ -153,7 +153,7 @@ CREATE TABLE IF NOT EXISTS `#__fields` (
`checked_out_time` datetime,
`ordering` int NOT NULL DEFAULT 0,
`params` text NOT NULL,
`fieldparams` text NOT NULL,
`fieldparams` mediumtext NOT NULL,
`language` char(7) NOT NULL DEFAULT '',
`created_time` datetime NOT NULL,
`created_user_id` int unsigned NOT NULL DEFAULT 0,
Expand Down

0 comments on commit a5ace8d

Please sign in to comment.