You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
10 lines
365 B
10 lines
365 B
Description: |
|
Generate a Rails migration in the db/post_migrate/ dir. |
|
|
|
Interacts with the post_deployment_migrations initializer. |
|
|
|
Example: |
|
bin/rails generate post_deployment_migration IsolateChanges |
|
|
|
Creates a migration in db/post_migrate/<timestamp>_isolate_changes.rb |
|
which will have `disable_ddl_transaction!` and a `change` method included.
|
|
|