Skip to content

Commit

Permalink
Issue #176 WIP
Browse files Browse the repository at this point in the history
  • Loading branch information
gggeek committed Nov 2, 2020
1 parent a7e9457 commit 69ea064
Showing 1 changed file with 3 additions and 2 deletions.
5 changes: 3 additions & 2 deletions Resources/config/services.yml
Original file line number Diff line number Diff line change
Expand Up @@ -33,6 +33,7 @@ parameters:
# queries doing joins between migration tables and eZP tables.
# eZPlatform uses utf8mb4 charset as default, whereas eZPublish used utf8
ez_migration_bundle.database_charset: 'utf8mb4'
ez_migration_bundle.database_collation: 'utf8mb4_general_ci'

# This is by default the max value for a 16-bit integer, which is what SOLR accepts as maximum nuber-of-results
# limitation for its queries.
Expand Down Expand Up @@ -204,7 +205,7 @@ services:
- '@ezpublish.connection'
- 'ez_migration_bundle.table_name'
- '@ez_migration_bundle.helper.config.resolver'
- { charset: '%ez_migration_bundle.database_charset%' }
- { charset: '%ez_migration_bundle.database_charset%', collate: '%ez_migration_bundle.database_collation%'}

ez_migration_bundle.context_storage_handler:
alias: ez_migration_bundle.context_storage_handler.database
Expand All @@ -215,7 +216,7 @@ services:
- '@ezpublish.connection'
- 'ez_migration_bundle.context_table_name'
- '@ez_migration_bundle.helper.config.resolver'
- { charset: '%ez_migration_bundle.database_charset%' }
- { charset: '%ez_migration_bundle.database_charset%', collate: '%ez_migration_bundle.database_collation%' }

### executors

Expand Down

0 comments on commit 69ea064

Please sign in to comment.