Skip to content

Instantly share code, notes, and snippets.

@dbrownidau
Last active May 6, 2019 02:23
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save dbrownidau/a614fc551ec645d7c64b07f938583ac7 to your computer and use it in GitHub Desktop.
Save dbrownidau/a614fc551ec645d7c64b07f938583ac7 to your computer and use it in GitHub Desktop.
Jira database encoding & collation setup (Postgrsql)
# As of Jira 8.1
# https://confluence.atlassian.com/adminjiraserver/connecting-jira-applications-to-postgresql-938846851.html
create database jira with owner jira ENCODING 'UNICODE' LC_COLLATE 'C' LC_CTYPE 'C' TEMPLATE template0;
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment