mirror of
https://code.castopod.org/adaures/castopod
synced 2025-04-19 13:01:19 +00:00
parent
daa11eb9c1
commit
82013c9cde
@ -11,7 +11,7 @@ class AddFullTextSearchIndexes extends BaseMigration
|
||||
$prefix = $this->db->getPrefix();
|
||||
|
||||
$createQuery = <<<SQL
|
||||
ALTER TABLE {$prefix}episodes DROP INDEX IF EXISTS title;
|
||||
ALTER TABLE {$prefix}episodes DROP INDEX title;
|
||||
SQL;
|
||||
|
||||
$this->db->query($createQuery);
|
||||
@ -37,14 +37,14 @@ class AddFullTextSearchIndexes extends BaseMigration
|
||||
|
||||
$createQuery = <<<SQL
|
||||
ALTER TABLE {$prefix}episodes
|
||||
DROP INDEX IF EXISTS episodes_search;
|
||||
DROP INDEX episodes_search;
|
||||
SQL;
|
||||
|
||||
$this->db->query($createQuery);
|
||||
|
||||
$createQuery = <<<SQL
|
||||
ALTER TABLE {$prefix}podcasts
|
||||
DROP INDEX IF EXISTS podcasts_search;
|
||||
DROP INDEX podcasts_search;
|
||||
SQL;
|
||||
|
||||
$this->db->query($createQuery);
|
||||
|
Loading…
x
Reference in New Issue
Block a user