我正在尝试使用以下 database.yml 将我的 rails 应用程序设置为使用 latin1 编码
development:
adapter: postgresql
database: pana_development
pool: 5
timeout: 5000
encoding: latin1
运行时rake db:create
出现以下错误:
Couldn't create database for {"adapter"=>"postgresql", "database"=>"pana_development", "pool"=>5, "timeout"=>5000, "encoding"=>"latin1"}
PG::Error: ERROR: encoding LATIN1 does not match locale en_US.UTF-8
DETAIL: The chosen LC_CTYPE setting requires encoding UTF8.
为了在 postgresql 数据库中使用 latin1 编码设置 rails,我需要做什么?