diff --git a/src/activitystream.xml b/src/activitystream.xml index 2bb1b90..f51c0ea 100755 --- a/src/activitystream.xml +++ b/src/activitystream.xml @@ -1,17 +1,13 @@ com_activitystream - - 8th Feb 2019 + 22nd Oct 2019 Techjoomla extensions@techjoomla.com https://techjoomla.com Copyright (C) 2016 - 2019 Techjoomla. All rights reserved. http://www.gnu.org/licenses/gpl-2.0.html GNU/GPL - - 1.0.1 - - + 1.0.2 COM_ACTIVITYSTREAM_DESCRIPTION script.activitystream.php diff --git a/src/admin/sql/install.mysql.utf8.sql b/src/admin/sql/install.mysql.utf8.sql index 8d3f4a2..c7d5d01 100755 --- a/src/admin/sql/install.mysql.utf8.sql +++ b/src/admin/sql/install.mysql.utf8.sql @@ -1,5 +1,5 @@ CREATE TABLE IF NOT EXISTS `#__tj_activities` ( - `id` INT(11) NOT NULL AUTO_INCREMENT, + `id` INT(11) NOT NULL AUTO_INCREMENT, `actor` text(900), `actor_id` text(900), `object` text(900), @@ -8,9 +8,9 @@ CREATE TABLE IF NOT EXISTS `#__tj_activities` ( `target_id` text(900), `type` text(900), `client` varchar(20), - `template` text(900), + `template` text, `default_theme` varchar(20), - `formatted_text` text(900), + `formatted_text` text, `access` tinyint(2) DEFAULT 1, `state` tinyint(2) DEFAULT 1, `location` text(900), @@ -19,6 +19,4 @@ CREATE TABLE IF NOT EXISTS `#__tj_activities` ( `created_date` datetime DEFAULT NULL, `updated_date` datetime DEFAULT NULL, PRIMARY KEY (`id`) -) - DEFAULT CHARSET =utf8 AUTO_INCREMENT =1; - +) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 DEFAULT COLLATE=utf8mb4_unicode_ci; diff --git a/src/admin/sql/updates/mysql/1.0.2.sql b/src/admin/sql/updates/mysql/1.0.2.sql new file mode 100755 index 0000000..ff1aab3 --- /dev/null +++ b/src/admin/sql/updates/mysql/1.0.2.sql @@ -0,0 +1,3 @@ +ALTER TABLE `#__tj_activities` MODIFY `template` text; +ALTER TABLE `#__tj_activities` MODIFY `formatted_text` text; +ALTER TABLE `#__tj_activities` ENGINE = InnoDB; \ No newline at end of file