From: Paul Norman Date: Thu, 10 Dec 2015 08:50:55 +0000 (-0800) Subject: Remove 9.0 extension install instructions X-Git-Tag: live~3953 X-Git-Url: https://git.openstreetmap.org/rails.git/commitdiff_plain/a694609ffad8a2724482586d23efd8951b65f141?hp=0d2e1608ba7aba12f173c526be8813a2a4b99095 Remove 9.0 extension install instructions PostgreSQL 9.0 is end of life, and having both extension install methods in documentation is often a source of confusion. --- diff --git a/INSTALL.md b/INSTALL.md index 09e3b12f7..87ba765db 100644 --- a/INSTALL.md +++ b/INSTALL.md @@ -160,14 +160,6 @@ bundle exec rake db:create We need to load the btree-gist extension, which is needed for showing changesets on the history tab. -For PostgreSQL < 9.1 (change the version number in the path as necessary): - -``` -psql -d openstreetmap < /usr/share/postgresql/9.0/contrib/btree_gist.sql -``` - -For PostgreSQL >= 9.1: - ``` psql -d openstreetmap -c "CREATE EXTENSION btree_gist" ```