Skip to content

Commit

Permalink
index added to viewlevels table
Browse files Browse the repository at this point in the history
  • Loading branch information
nadeeshaan authored and gunjanpatel committed Jan 25, 2015
1 parent 1f31c0d commit 9e9d8e0
Showing 1 changed file with 3 additions and 2 deletions.
5 changes: 3 additions & 2 deletions installation/sql/mysql/joomla.sql
Expand Up @@ -1965,8 +1965,9 @@ CREATE TABLE IF NOT EXISTS `#__viewlevels` (
`ordering` int(11) NOT NULL DEFAULT 0,
`rules` varchar(5120) NOT NULL COMMENT 'JSON encoded access control.',
PRIMARY KEY (`id`),
UNIQUE KEY `idx_assetgroup_title_lookup` (`title`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8 AUTO_INCREMENT=7;
UNIQUE KEY `idx_assetgroup_title_lookup` (`title`),
KEY `idx_ordering_title` (`ordering`,`title`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8 AUTO_INCREMENT=7;

--
-- Dumping data for table `#__viewlevels`
Expand Down

0 comments on commit 9e9d8e0

Please sign in to comment.