-
-
Notifications
You must be signed in to change notification settings - Fork 3.7k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
313 changed files
with
5,325 additions
and
4,714 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
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
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
7 changes: 6 additions & 1 deletion
7
administrator/components/com_admin/sql/updates/mysql/2.5.0-2011-12-24.sql
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,3 +1,8 @@ | ||
ALTER TABLE `#__menu` DROP INDEX `idx_client_id_parent_id_alias`; | ||
|
||
ALTER TABLE `#__menu` ADD UNIQUE `idx_client_id_parent_id_alias_language` ( `client_id` , `parent_id` , `alias` , `language` ); | ||
-- | ||
-- The following statment had to be modified for utf8mb4 in Joomla! 3.5.1, changing | ||
-- `alias` to `alias`(100) | ||
-- | ||
|
||
ALTER TABLE `#__menu` ADD UNIQUE `idx_client_id_parent_id_alias_language` ( `client_id` , `parent_id` , `alias`(100) , `language` ); |
5 changes: 5 additions & 0 deletions
5
administrator/components/com_admin/sql/updates/mysql/3.5.1-2016-03-25.sql
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,5 @@ | ||
-- | ||
-- Make #__user_keys.user_id fit to #__users.username | ||
-- | ||
|
||
ALTER TABLE `#__user_keys` MODIFY `user_id` varchar(150) NOT NULL; |
7 changes: 7 additions & 0 deletions
7
administrator/components/com_admin/sql/updates/mysql/3.5.1-2016-03-29.sql
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,7 @@ | ||
-- | ||
-- Reset UTF-8 Multibyte (utf8mb4) or UTF-8 conversion status | ||
-- to force a new conversion when updating from version 3.5.0 | ||
-- | ||
|
||
UPDATE `#__utf8_conversion` SET `converted` = 0 | ||
WHERE (SELECT COUNT(*) FROM `#__schemas` WHERE `extension_id`=700 AND `version_id` LIKE '3.5.0%') = 1; |
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
4 changes: 2 additions & 2 deletions
4
administrator/components/com_admin/sql/updates/postgresql/3.5.0-2015-10-26.sql
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,2 +1,2 @@ | ||
ALTER TABLE "#__contentitem_tag_map" DROP INDEX "#__contentitem_tag_map_idx_tag"; | ||
ALTER TABLE "#__contentitem_tag_map" DROP INDEX "#__contentitem_tag_map_idx_type"; | ||
DROP INDEX "#__contentitem_tag_map_idx_tag"; | ||
DROP INDEX "#__contentitem_tag_map_idx_type"; |
8 changes: 4 additions & 4 deletions
8
administrator/components/com_admin/sql/updates/postgresql/3.5.0-2016-03-01.sql
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,5 +1,5 @@ | ||
ALTER TABLE "#__redirect_links" DROP CONSTRAINT "#__redirect_links_idx_link_old" | ||
ALTER TABLE "#__redirect_links" ALTER COLUMN "old_url" TYPE varchar(2048); | ||
ALTER TABLE "#__redirect_links" ALTER COLUMN "new_url" TYPE varchar(2048); | ||
ALTER TABLE "#__redirect_links" ALTER COLUMN "referer" TYPE varchar(2048); | ||
ALTER TABLE "#__redirect_links" DROP CONSTRAINT "#__redirect_links_idx_link_old"; | ||
ALTER TABLE "#__redirect_links" ALTER COLUMN "old_url" TYPE character varying(2048); | ||
ALTER TABLE "#__redirect_links" ALTER COLUMN "new_url" TYPE character varying(2048); | ||
ALTER TABLE "#__redirect_links" ALTER COLUMN "referer" TYPE character varying(2048); | ||
CREATE INDEX "#__idx_link_old" ON "#__redirect_links" ("old_url"); |
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
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
Oops, something went wrong.