Skip to content
Snippets Groups Projects
Commit 918177b7 authored by Nikolay's avatar Nikolay
Browse files

Correct inaccurate phrase related to disable_ddl_transaction mode

parent bea52d82
No related branches found
No related tags found
No related merge requests found
Loading
Loading
@@ -134,9 +134,9 @@ should be more than enough.
When removing an index make sure to use the method `remove_concurrent_index` instead
of the regular `remove_index` method. The `remove_concurrent_index` method
automatically drops concurrent indexes when using PostgreSQL, removing the
need for downtime. To use this method you must disable transactions by calling
the method `disable_ddl_transaction!` in the body of your migration class like
so:
need for downtime. To use this method you must disable single-transaction mode
by calling the method `disable_ddl_transaction!` in the body of your migration
class like so:
 
```ruby
class MyMigration < ActiveRecord::Migration
Loading
Loading
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment