diff options
author | Sean Griffin <sean@seantheprogrammer.com> | 2017-01-03 16:15:58 -0500 |
---|---|---|
committer | GitHub <noreply@github.com> | 2017-01-03 16:15:58 -0500 |
commit | 1511f0e738f8e5ab303fc8394b63eebd81090b63 (patch) | |
tree | f76a084c3df1c60472fd6901fe17954196a44aa1 | |
parent | 95962c4fe0d09976e90cf7e179a72085a29812a7 (diff) | |
parent | a899549ba249d4ce1b6de8e0a043ef8b2ce2e416 (diff) | |
download | rails-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
-rw-r--r-- | activerecord/Rakefile | 5 |
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" |