diff options
author | Seb Bacon <seb.bacon@gmail.com> | 2012-01-04 10:45:39 +0000 |
---|---|---|
committer | Seb Bacon <seb.bacon@gmail.com> | 2012-01-04 10:45:39 +0000 |
commit | fc865277c8a74172131439e7d1f01bb16f443df3 (patch) | |
tree | 46b0f333c7720021e9769530e015f05e561cb8a3 | |
parent | 9f95813cf5206ed3719d0f151f9f3557af2008b2 (diff) |
Document why we use SQL_ASCII encoding at mySociety
-rw-r--r-- | doc/INSTALL.md | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/doc/INSTALL.md b/doc/INSTALL.md index a666ac2f0..8779f717c 100644 --- a/doc/INSTALL.md +++ b/doc/INSTALL.md @@ -77,8 +77,8 @@ constraints whilst running the tests they also need to be a superuser. The following command will set up a user 'foi' with password 'foi': - echo "CREATE DATABASE foi_development encoding = 'UTF8'; - CREATE DATABASE foi_test encoding = 'UTF8'; + echo "CREATE DATABASE foi_development encoding = 'SQL_ASCII'; + CREATE DATABASE foi_test encoding = 'SQL_ASCII'; CREATE USER foi WITH CREATEUSER; ALTER USER foi WITH PASSWORD 'foi'; ALTER USER foi WITH CREATEDB; |