Skip to content

Commit

Permalink
fix: Update default charset and collation for mysql - EXO-75202
Browse files Browse the repository at this point in the history
With mysql 8.4, the default charset and collation are updated from UTF to UTF8MB4. In addition NVARCHAR is now deprecated and replaced by VARCHAR.
This commit adapt liquibase changes in order to apply this change.
  • Loading branch information
rdenarie committed Nov 7, 2024
1 parent 89d7270 commit 83680cc
Showing 1 changed file with 3 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -99,13 +99,14 @@
</changeSet>

<changeSet author="exo-dlp" id="1.0.0-8">
<validCheckSum>9:29316e6ea1f11ab12eb204c8a4bc817c</validCheckSum>
<modifyDataType columnName="KEYWORDS"
newDataType="NVARCHAR(500)"
newDataType="VARCHAR(500)"
tableName="DLP_POSITIVE_ITEMS"/>
<rollback>
<!-- This rollback is need because in unit test we will revert all changes after each test case-->
<modifyDataType columnName="KEYWORDS"
newDataType="NVARCHAR(50)"
newDataType="VARCHAR(50)"
tableName="DLP_POSITIVE_ITEMS"/>
</rollback>
</changeSet>
Expand Down

0 comments on commit 83680cc

Please sign in to comment.