diff options
author | Ryuta Kamizono <kamipo@gmail.com> | 2017-12-01 20:48:29 +0900 |
---|---|---|
committer | Ryuta Kamizono <kamipo@gmail.com> | 2017-12-01 20:48:29 +0900 |
commit | 32516e8862946da963e4ba9256553156ca321596 (patch) | |
tree | 9319b8e78d83ccadb7fb3c5292e77f189265b904 | |
parent | 6b16f6db279bdbd95e8b295c9bab6760a6ff6af0 (diff) | |
download | rails-32516e8862946da963e4ba9256553156ca321596.tar.gz rails-32516e8862946da963e4ba9256553156ca321596.tar.bz2 rails-32516e8862946da963e4ba9256553156ca321596.zip |
Remove unpaired `}` [ci skip]
-rw-r--r-- | activerecord/lib/active_record/connection_adapters/abstract/schema_statements.rb | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/activerecord/lib/active_record/connection_adapters/abstract/schema_statements.rb b/activerecord/lib/active_record/connection_adapters/abstract/schema_statements.rb index 2a335e8f2b..7ae32d0ced 100644 --- a/activerecord/lib/active_record/connection_adapters/abstract/schema_statements.rb +++ b/activerecord/lib/active_record/connection_adapters/abstract/schema_statements.rb @@ -752,13 +752,12 @@ module ActiveRecord # # CREATE INDEX developers_on_name_and_city ON developers USING gist (name, city gist_trgm_ops) -- PostgreSQL # - # add_index(:developers, [:name, :city], using: 'gist', opclass: :gist_trgm_ops }) + # add_index(:developers, [:name, :city], using: 'gist', opclass: :gist_trgm_ops) # # generates: # # CREATE INDEX developers_on_name_and_city ON developers USING gist (name gist_trgm_ops, city gist_trgm_ops) -- PostgreSQL # - # # Note: only supported by PostgreSQL # # ====== Creating an index with a specific type |