From f6688dd79e1b56b8e5866782f26da6a414f7bd65 Mon Sep 17 00:00:00 2001 From: Jamie Nguyen Date: Sat, 23 May 2015 12:47:06 +0100 Subject: [PATCH] Bump recommended minimum PostgreSQL version to 9.3 --- README.md | 2 +- docs/DEVELOPER-ADVANCED.md | 2 +- docs/INSTALL.md | 2 +- docs/TROUBLESHOOTING-prod.md | 2 +- docs/TROUBLESHOOTING.md | 2 +- 5 files changed, 5 insertions(+), 5 deletions(-) diff --git a/README.md b/README.md index 51450402ffc..3b1bf88d060 100644 --- a/README.md +++ b/README.md @@ -25,7 +25,7 @@ Browse [lots more notable Discourse instances](http://www.discourse.org/faq/cust 2. If you're familiar with how Rails works and are comfortable setting up your own environment, use our [**Discourse Advanced Developer Guide**](docs/DEVELOPER-ADVANCED.md). -Before you get started, ensure you have the following minimum versions: [Ruby 2.0.0+](http://www.ruby-lang.org/en/downloads/), [PostgreSQL 9.1+](http://www.postgresql.org/download/), [Redis 2.6+](http://redis.io/download). If you're having trouble, please see our [**TROUBLESHOOTING GUIDE**](docs/TROUBLESHOOTING.md) first! +Before you get started, ensure you have the following minimum versions: [Ruby 2.0.0+](http://www.ruby-lang.org/en/downloads/), [PostgreSQL 9.3+](http://www.postgresql.org/download/), [Redis 2.6+](http://redis.io/download). If you're having trouble, please see our [**TROUBLESHOOTING GUIDE**](docs/TROUBLESHOOTING.md) first! ## Setting up a Discourse Forum diff --git a/docs/DEVELOPER-ADVANCED.md b/docs/DEVELOPER-ADVANCED.md index 2f6b24d2e76..efc55c1bf4a 100644 --- a/docs/DEVELOPER-ADVANCED.md +++ b/docs/DEVELOPER-ADVANCED.md @@ -6,7 +6,7 @@ Note: If you are developing on a Mac, you will probably want to look at [these i ## First Steps -1. Install and configure PostgreSQL 9.2+. +1. Install and configure PostgreSQL 9.3+. 1. Run `postgres -V` to see if you already have it. 1. Make sure that the server's messages language is English; this is [required](https://github.com/rails/rails/blob/3006c59bc7a50c925f6b744447f1d94533a64241/activerecord/lib/active_record/connection_adapters/postgresql_adapter.rb#L1140) by the ActiveRecord Postgres adapter. 2. Install and configure Redis 2+. diff --git a/docs/INSTALL.md b/docs/INSTALL.md index 961f365a7ee..5c5640846ad 100644 --- a/docs/INSTALL.md +++ b/docs/INSTALL.md @@ -20,7 +20,7 @@ Hosting Rails applications is complicated. Even if you already have Postgres, Re ### Software Requirements -- [Postgres 9.2+](http://www.postgresql.org/download/) +- [Postgres 9.3+](http://www.postgresql.org/download/) - [Redis 2.6+](http://redis.io/download) - [Ruby 2.0+](http://www.ruby-lang.org/en/downloads/) (we recommend 2.0.0-p353 or higher) diff --git a/docs/TROUBLESHOOTING-prod.md b/docs/TROUBLESHOOTING-prod.md index 3a7d37749e6..106cfd047de 100644 --- a/docs/TROUBLESHOOTING-prod.md +++ b/docs/TROUBLESHOOTING-prod.md @@ -12,7 +12,7 @@ something like: `ruby 2.0.0p195 (2013-05-14 revision 40734) [x86_64-linux]` -1. Are you on Postgres 9.2 or later with HSTORE enabled? +1. Are you on Postgres 9.3 or later with HSTORE enabled? You can check your postgres version by typing `psql --version`. To see if hstore is installed, open a session to postgres and type `\dx` and see if diff --git a/docs/TROUBLESHOOTING.md b/docs/TROUBLESHOOTING.md index 6f63259f244..adb391c367e 100644 --- a/docs/TROUBLESHOOTING.md +++ b/docs/TROUBLESHOOTING.md @@ -10,7 +10,7 @@ reaching out to the community for help: `ruby -v` and checking the response. -2. Are you on Postgres 9.2 or later with HSTORE enabled? +2. Are you on Postgres 9.3 or later with HSTORE enabled? You can check your postgres version by typing `psql --version`. To see if hstore is installed, open a session to postgres and type `\dx` and see if hstore is listed.