Skip to content

Commit

Permalink
Issue techjoomla#48 chore: Log Email details in DB table - Tj Notific…
Browse files Browse the repository at this point in the history
…ation
  • Loading branch information
punambaravkar committed Jun 21, 2019
1 parent 396a933 commit 73a7dc6
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 7 deletions.
4 changes: 1 addition & 3 deletions src/com_tjnotifications/admin/sql/install.mysql.utf8.sql
Original file line number Diff line number Diff line change
Expand Up @@ -66,9 +66,7 @@ CREATE TABLE IF NOT EXISTS `#__tjnotification_logs` (
`date` date NOT NULL,
`state` int(11) NOT NULL,
`params` text NOT NULL,
PRIMARY KEY (`id`),
KEY `client` (`client`),
KEY `key` (`key`)
PRIMARY KEY (`id`)
)
DEFAULT CHARSET=utf8
AUTO_INCREMENT=0 ;
5 changes: 1 addition & 4 deletions src/com_tjnotifications/admin/sql/updates/mysql/1.1.0.sql
Original file line number Diff line number Diff line change
Expand Up @@ -16,10 +16,7 @@ CREATE TABLE IF NOT EXISTS `#__tjnotification_logs` (
`date` date NOT NULL,
`state` int(11) NOT NULL,
`params` text NOT NULL,
PRIMARY KEY (`id`),
KEY `client` (`client`),
KEY `key` (`key`)
PRIMARY KEY (`id`)
)
DEFAULT CHARSET=utf8
AUTO_INCREMENT=0 ;

0 comments on commit 73a7dc6

Please sign in to comment.