Skip to content

Instantly share code, notes, and snippets.

@ar7n
Created February 11, 2019 08:41
Show Gist options
  • Save ar7n/9d5d3adc36d04dcb9aab5739fb9ad458 to your computer and use it in GitHub Desktop.
Save ar7n/9d5d3adc36d04dcb9aab5739fb9ad458 to your computer and use it in GitHub Desktop.
Create Postgres DB with RU locale
CREATE DATABASE "dbname"
WITH OWNER "postgres"
ENCODING 'UTF-8'
LC_COLLATE = 'ru_RU.UTF-8'
LC_CTYPE = 'ru_RU.UTF-8'
TEMPLATE = template0;
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment