-
Notifications
You must be signed in to change notification settings - Fork 23
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Browse files
Browse the repository at this point in the history
Task #46 fix: Updated table charset and collation
- Loading branch information
Showing
5 changed files
with
18 additions
and
10 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,8 @@ | ||
-- Change engine | ||
ALTER TABLE `#__hierarchy_users` ENGINE = InnoDB; | ||
|
||
-- Change charset, collation | ||
ALTER TABLE `#__hierarchy_users` CHANGE `note` `note` TEXT CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci NOT NULL; | ||
ALTER TABLE `#__hierarchy_users` CHANGE `context` `context` VARCHAR(255) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci NOT NULL; | ||
|
||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,13 +1,13 @@ | ||
<?xml version="1.0" encoding="utf-8"?> | ||
<extension type="component" version="3.0" method="upgrade"> | ||
<name>com_hierarchy</name> | ||
<creationDate>16th Nov 2018</creationDate> | ||
<copyright>Copyright (C) 2016 - 2018 Techjoomla. All rights reserved.</copyright> | ||
<creationDate>22nd Oct 2019</creationDate> | ||
<copyright>Copyright (C) 2016 - 2019 Techjoomla. All rights reserved.</copyright> | ||
<license>http://www.gnu.org/licenses/gpl-2.0.html GNU/GPL</license> | ||
<author>Techjoomla</author> | ||
<authorEmail>[email protected]</authorEmail> | ||
<authorUrl>https://techjoomla.com</authorUrl> | ||
<version>1.1.1</version> | ||
<version>1.1.2</version> | ||
<description>This tool will let the admin set a ‘Reports to’ field for each user in the system. This will be updated en masse using a CSV</description> | ||
|
||
<install> <!-- Runs on install --> | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,12 +1,12 @@ | ||
<?xml version="1.0" encoding="utf-8"?> | ||
<extension version="3.4" type="plugin" group="actionlog" method="upgrade"> | ||
<name>plg_actionlog_hierarchy</name> | ||
<version>1.1.1</version> | ||
<creationDate>16th Nov 2018</creationDate> | ||
<version>1.1.2</version> | ||
<creationDate>22nd Oct 2019</creationDate> | ||
<author>Techjoomla</author> | ||
<authorEmail>[email protected]</authorEmail> | ||
<authorUrl>https://techjoomla.com</authorUrl> | ||
<copyright>Copyright (C) 2016 - 2018 Techjoomla. All rights reserved.</copyright> | ||
<copyright>Copyright (C) 2016 - 2019 Techjoomla. All rights reserved.</copyright> | ||
<license>http://www.gnu.org/licenses/gpl-2.0.html GNU/GPL</license> | ||
<description>PLG_ACTIONLOG_HIERARCHY_XML_DESCRIPTION</description> | ||
<files> | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,12 +1,12 @@ | ||
<?xml version="1.0" encoding="utf-8"?> | ||
<extension version="3.4" type="plugin" group="privacy" method="upgrade"> | ||
<name>plg_privacy_hierarchy</name> | ||
<version>1.1.1</version> | ||
<creationDate>16th Nov 2018</creationDate> | ||
<version>1.1.2</version> | ||
<creationDate>22nd Oct 2019</creationDate> | ||
<author>Techjoomla</author> | ||
<authorEmail>[email protected]</authorEmail> | ||
<authorUrl>https://techjoomla.com</authorUrl> | ||
<copyright>Copyright (C) 2016 - 2018 Techjoomla. All rights reserved.</copyright> | ||
<copyright>Copyright (C) 2016 - 2019 Techjoomla. All rights reserved.</copyright> | ||
<license>http://www.gnu.org/licenses/gpl-2.0.html GNU/GPL</license> | ||
<description>PLG_PRIVACY_HIERARCHY_XML_DESCRIPTION</description> | ||
<files> | ||
|