uxf/content

Maintainers

Details

gitlab.com/uxf/content

Source

Issues

Installs: 6 227

Dependents: 1

Suggesters: 0

Security: 0

Stars: 0

Forks: 0

3.41.0 2024-04-28 09:53 UTC

README

Install

$ composer req uxf/content

Doctrine migration

$this->addSql("CREATE TEXT SEARCH DICTIONARY unaccented_czech (template = ispell, dictfile = 'unaccented_czech', afffile = 'unaccented_czech', stopwords = 'unaccented_czech')");
$this->addSql("CREATE TEXT SEARCH CONFIGURATION unaccented_cs (parser = default)");
$this->addSql("ALTER TEXT SEARCH CONFIGURATION unaccented_cs ALTER MAPPING FOR asciiword, asciihword, hword_asciipart, word, hword, hword_part WITH unaccented_czech");

GIN index

-- original
CREATE INDEX IDX_42803DB7DCC6AB0B ON app_blog.test_article (content_search);

-- modified
CREATE INDEX IDX_42803DB7DCC6AB0B ON app_blog.test_article USING GIN(content_search);