Merge pull request #968 from eikek/fix/japanese-solr

Add the japanese content field to solr
This commit is contained in:
mergify[bot] 2021-07-29 20:49:41 +00:00 committed by GitHub
commit c1ba257511
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -108,7 +108,13 @@ object SolrSetup {
"Add latvian content field", "Add latvian content field",
addContentField(Language.Latvian) addContentField(Language.Latvian)
), ),
SolrMigration.reIndexAll(13, "Re-Index after adding latvian content field") SolrMigration.reIndexAll(13, "Re-Index after adding latvian content field"),
SolrMigration[F](
14,
"Add japanese content field",
addContentField(Language.Japanese)
),
SolrMigration.reIndexAll(15, "Re-Index after adding japanese content field")
) )
def addFolderField: F[Unit] = def addFolderField: F[Unit] =