aboutsummaryrefslogtreecommitdiffstats
path: root/activerecord/Rakefile
diff options
context:
space:
mode:
authorSean Griffin <sean@seantheprogrammer.com>2017-01-03 16:15:58 -0500
committerGitHub <noreply@github.com>2017-01-03 16:15:58 -0500
commit1511f0e738f8e5ab303fc8394b63eebd81090b63 (patch)
treef76a084c3df1c60472fd6901fe17954196a44aa1 /activerecord/Rakefile
parent95962c4fe0d09976e90cf7e179a72085a29812a7 (diff)
parenta899549ba249d4ce1b6de8e0a043ef8b2ce2e416 (diff)
downloadrails-1511f0e738f8e5ab303fc8394b63eebd81090b63.tar.gz
rails-1511f0e738f8e5ab303fc8394b63eebd81090b63.tar.bz2
rails-1511f0e738f8e5ab303fc8394b63eebd81090b63.zip
Merge pull request #25927 from y-yagi/remove_needless_warning_for_hstore
remove needless warning for hstore
Diffstat (limited to 'activerecord/Rakefile')
-rw-r--r--activerecord/Rakefile5
1 files changed, 0 insertions, 5 deletions
diff --git a/activerecord/Rakefile b/activerecord/Rakefile
index ec28df8fea..7be3d851f1 100644
--- a/activerecord/Rakefile
+++ b/activerecord/Rakefile
@@ -111,11 +111,6 @@ namespace :db do
config = ARTest.config["connections"]["postgresql"]
%x( createdb -E UTF8 -T template0 #{config["arunit"]["database"]} )
%x( createdb -E UTF8 -T template0 #{config["arunit2"]["database"]} )
-
- # prepare hstore
- if %x( createdb --version ).strip.gsub(/(.*)(\d\.\d\.\d)$/, "\\2") < "9.1.0"
- puts "Please prepare hstore data type. See http://www.postgresql.org/docs/current/static/hstore.html"
- end
end
desc "Drop the PostgreSQL test databases"