Skip to content

Commit

Permalink
Prevent null unicode character errors during the migration
Browse files Browse the repository at this point in the history
  • Loading branch information
isacikgoz committed May 8, 2024
1 parent f00efe5 commit 870b942
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions server/tests/template.load
Original file line number Diff line number Diff line change
Expand Up @@ -22,9 +22,9 @@ CAST column Channels.Type to "channel_type" drop typemod,
column Drafts.Priority to text,
type int when (= precision 11) to integer drop typemod,
type bigint when (= precision 20) to bigint drop typemod,
type text to varchar drop typemod,
type text to varchar drop typemod using remove-null-characters,
type tinyint when (<= precision 4) to boolean using tinyint-to-boolean,
type json to jsonb drop typemod
type json to jsonb drop typemod using remove-null-characters

EXCLUDING TABLE NAMES MATCHING ~<IR_>, ~<focalboard>

Expand Down

0 comments on commit 870b942

Please sign in to comment.