USAGE 365 B

12345678910
  1. Description:
  2. Generate a Rails migration in the db/post_migrate/ dir.
  3. Interacts with the post_deployment_migrations initializer.
  4. Example:
  5. bin/rails generate post_deployment_migration IsolateChanges
  6. Creates a migration in db/post_migrate/<timestamp>_isolate_changes.rb
  7. which will have `disable_ddl_transaction!` and a `change` method included.