Skip to content

Commit

Permalink
Bug techjoomla#347 fix: While copy & paste the image in editor type f…
Browse files Browse the repository at this point in the history
…iled in tjfield image not save.
  • Loading branch information
shindebalu committed Feb 9, 2022
1 parent 37de023 commit 6593fff
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 1 deletion.
2 changes: 1 addition & 1 deletion administrator/sql/install.mysql.utf8.sql
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@ CREATE TABLE IF NOT EXISTS `#__tjfields_fields_value` (
`id` int(11) NOT NULL AUTO_INCREMENT,
`field_id` int(11) NOT NULL COMMENT 'Field table ID',
`content_id` int(11) NOT NULL COMMENT 'client specific id',
`value` text NOT NULL,
`value` mediumtext NOT NULL,
`option_id` int(11) DEFAULT NULL,
`user_id` int(11) NOT NULL,
`email_id` varchar(255) NOT NULL,
Expand Down
1 change: 1 addition & 0 deletions administrator/sql/updates/mysql/1.4.5.sql
Original file line number Diff line number Diff line change
Expand Up @@ -3,3 +3,4 @@ ALTER TABLE `#__tjfields_fields_value` ADD INDEX(`field_id`);
ALTER TABLE `#__tjfields_fields_value` ADD INDEX(`content_id`);
ALTER TABLE `#__tjfields_options` ADD `ordering` INT(11) NOT NULL AFTER `value`;
DROP TABLE IF EXISTS `#__tjfields_client_type`;
ALTER TABLE `#__tjfields_fields_value` CHANGE `value` `value` MEDIUMTEXT NOT NULL;

0 comments on commit 6593fff

Please sign in to comment.