Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Bug fix:[Activity dashboard]- Shows 1054 error #28

Open
wants to merge 1 commit into
base: release-1.0.4
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion src/activitystream.xml
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@
<copyright>Copyright(C)2012-16 TechJoomla</copyright>
<license>http://www.gnu.org/licenses/gpl-2.0.html GNU/GPL</license>
<!-- The version string is recorded in the components table -->
<version>0.0.1</version>
<version>1.0.0</version>
<!-- The description is optional and defaults to the name -->
<description>COM_ACTIVITYSTREAM_DESCRIPTION</description>
<scriptfile>script.activitystream.php</scriptfile>
Expand Down
1 change: 1 addition & 0 deletions src/admin/sql/install.mysql.utf8.sql
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,7 @@ CREATE TABLE IF NOT EXISTS `#__tj_activities` (
`target` text(900),
`target_id` text(900),
`type` text(900),
`client` varchar(20),
`template` text(900),
`formatted_text` text(900),
`access` tinyint(2) DEFAULT 1,
Expand Down
1 change: 1 addition & 0 deletions src/admin/sql/updates/mysql/1.0.0.sql
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
ALTER TABLE `#__tj_activities` add column `client` varchar(20) DEFAULT NULL;