Skip to content

Commit

Permalink
[TASK] Add Indexes in the table
Browse files Browse the repository at this point in the history
  • Loading branch information
pradeepnitsan committed Aug 28, 2024
1 parent 5107f35 commit 05dfcf9
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 2 deletions.
2 changes: 1 addition & 1 deletion ext_emconf.php
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@
'uploadfolder' => '0',
'createDirs' => '',
'clearCacheOnLoad' => 0,
'version' => '5.2.0',
'version' => '5.2.1',
'constraints' => [
'depends' => [
'typo3' => '8.0.0-10.9.99',
Expand Down
3 changes: 2 additions & 1 deletion ext_tables.sql
Original file line number Diff line number Diff line change
Expand Up @@ -40,8 +40,9 @@ CREATE TABLE tx_nsnewscomments_domain_model_comment (
PRIMARY KEY (uid),
KEY parent (pid),
KEY t3ver_oid (t3ver_oid,t3ver_wsid),
KEY language (l10n_parent,sys_language_uid)
KEY language (l10n_parent,sys_language_uid),

INDEX commentData (comment,deleted,hidden,t3ver_state,starttime,endtime)
);

#
Expand Down

0 comments on commit 05dfcf9

Please sign in to comment.