-
Notifications
You must be signed in to change notification settings - Fork 17
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Task #163911: Added cols client issued to and client issued to name (#28
) * Bug #162401 Fix: Warning on com_tjcertificate edit template view (#18) * Task #163911: Added cols client issued to and client issued to name * Task #163911: Added cols client issued to and client issued to name * Task #163911: Added cols client issued to and client issued to name Co-authored-by: MeghaBiranje <[email protected]>
- Loading branch information
1 parent
2737130
commit 2b59f81
Showing
5 changed files
with
92 additions
and
8 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
2 changes: 2 additions & 0 deletions
2
src/components/com_tjcertificate/administrator/sql/updates/mysql/1.0.1.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,2 @@ | ||
ALTER TABLE `#__tj_certificate_issue` ADD `client_issued_to` int(11) NOT NULL AFTER `user_id`; | ||
ALTER TABLE `#__tj_certificate_issue` ADD `client_issued_to_name` varchar(400) COLLATE 'utf8mb4_unicode_ci' NOT NULL AFTER `client_issued_to`; |
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 |
---|---|---|
|
@@ -8,7 +8,7 @@ | |
<authorEmail>[email protected]</authorEmail> | ||
<authorUrl>http://techjoomla.com</authorUrl> | ||
<description /> | ||
<version>1.0.0</version> | ||
<version>1.0.1</version> | ||
<install> | ||
<!-- Runs on install --> | ||
<sql> | ||
|