I've set up a database on PostgreSQL 14, and now when I try to insert data, I'm getting the following error:
ERROR: collation "cs_CZ.utf8" for encoding "UTF8" does not exist
Currently, I see the following settings: Encoding | UTF8 Collate | en_US.UTF-8 Ctype | en_US.UTF-8
I didn't encounter this issue on another project, and I managed to insert Czech data into it.
Do you know if I'll need to create new databases with cs_CZ.utf8 or just change the encoding?
Thank you.