forked from joomla/joomla-cms
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Increase size of the "link" field in com_newsfeeds (joomla#11614)
* increased limit of characters for the URL To resolve joomla#11612 * increased limit of characters for the feed URL Increased limit of characters for the Feed URL to fix issue joomla#11612 * increased limit of characters for the feed URL To resolve joomla#11612 * increased limit of characters for the feed URL To resolve joomla#11612 * increased limit of characters for the feed URL To fix joomla#11612 * increased limit of characters for the feed URL To fix joomla#11612 * increased limit of characters for the feed URL To fix joomla#11612 * fixed syntax * fixed syntax SQL Azure * fixed syntax * Fixed mistake in comment Updated comment from "Set if article is featured" to "Set if contact is featured" * Fixed mistake in comment Fixed, there was "article" instead of "contact" * Updated mysql comment to reflect rules * Updated SQL comment to reflect rules * Updated SQL comment to reflect rules * Resolving merge conflicts to fix merge conflicts after joomla#11617 * Resolving merge conflicts * Applying patch to increase size of link field After resolving merge issues, this commit apply again the patch to increase the size of the link field.
- Loading branch information
1 parent
37cad9c
commit dcbe4e5
Showing
7 changed files
with
21 additions
and
6 deletions.
There are no files selected for viewing
5 changes: 5 additions & 0 deletions
5
administrator/components/com_admin/sql/updates/mysql/3.6.3-2016-08-15.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 @@ | ||
-- | ||
-- Increasing size of the URL field in com_newsfeeds | ||
-- | ||
|
||
ALTER TABLE `#__newsfeeds` MODIFY `link` VARCHAR(2048) NOT NULL; |
5 changes: 5 additions & 0 deletions
5
administrator/components/com_admin/sql/updates/postgresql/3.6.3-2016-08-15.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 @@ | ||
-- | ||
-- Increasing size of the URL field in com_newsfeeds | ||
-- | ||
|
||
ALTER TABLE "#__newsfeeds" ALTER COLUMN "link" TYPE character varying(2048); |
5 changes: 5 additions & 0 deletions
5
administrator/components/com_admin/sql/updates/sqlazure/3.6.3-2016-08-15.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 @@ | ||
-- | ||
-- Increasing size of the URL field in com_newsfeeds | ||
-- | ||
|
||
ALTER TABLE [#__newsfeeds] ALTER COLUMN [link] [nvarchar](2048) 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
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