Skip to content

Commit

Permalink
Removing SearchHelper and dropping #__core_log_searches table
Browse files Browse the repository at this point in the history
  • Loading branch information
Hackwar committed Jun 6, 2018
1 parent b5a6fec commit 09a592a
Show file tree
Hide file tree
Showing 5 changed files with 2 additions and 93 deletions.
@@ -0,0 +1 @@
DROP TABLE IF EXISTS `#__core_log_searches`;
@@ -0,0 +1 @@
DROP TABLE IF EXISTS "#__core_log_searches";
11 changes: 0 additions & 11 deletions installation/sql/mysql/joomla.sql
Expand Up @@ -441,17 +441,6 @@ CREATE TABLE IF NOT EXISTS `#__contentitem_tag_map` (

-- --------------------------------------------------------

--
-- Table structure for table `#__core_log_searches`
--

CREATE TABLE IF NOT EXISTS `#__core_log_searches` (
`search_term` varchar(128) NOT NULL DEFAULT '',
`hits` int(10) unsigned NOT NULL DEFAULT 0
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 DEFAULT COLLATE=utf8mb4_unicode_ci;

-- --------------------------------------------------------

--
-- Table structure for table `#__extensions`
--
Expand Down
9 changes: 0 additions & 9 deletions installation/sql/postgresql/joomla.sql
Expand Up @@ -455,15 +455,6 @@ COMMENT ON COLUMN "#__contentitem_tag_map"."type_id" IS 'PK from the content_typ

-- --------------------------------------------------------

--
-- Table structure for table `#__core_log_searches`
--

CREATE TABLE IF NOT EXISTS "#__core_log_searches" (
"search_term" varchar(128) DEFAULT '' NOT NULL,
"hits" bigint DEFAULT 0 NOT NULL
);

--
-- Table structure for table `#__extensions`
--
Expand Down
73 changes: 0 additions & 73 deletions libraries/src/Helper/SearchHelper.php

This file was deleted.

0 comments on commit 09a592a

Please sign in to comment.