diff options
author | Matt Jankowski <matt@jankowski.online> | 2023-04-11 11:25:29 +0200 |
---|---|---|
committer | GitHub <noreply@github.com> | 2023-04-11 11:25:29 +0200 |
commit | a2a66300d99ed53d63a7f065ffbed53d2ce074e3 (patch) | |
tree | 0c0f0e44df9e50ded8ac4c8685e2f16e17f37fb8 /lib/templates/rails/post_deployment_migration | |
parent | 3c7053a2db86450d48849ca6b2f7e9ab6ff071bb (diff) |
Clean up the post deployment migration generator (#24233)
Diffstat (limited to 'lib/templates/rails/post_deployment_migration')
-rw-r--r-- | lib/templates/rails/post_deployment_migration/migration.rb | 8 |
1 files changed, 0 insertions, 8 deletions
diff --git a/lib/templates/rails/post_deployment_migration/migration.rb b/lib/templates/rails/post_deployment_migration/migration.rb deleted file mode 100644 index 503205b84..000000000 --- a/lib/templates/rails/post_deployment_migration/migration.rb +++ /dev/null @@ -1,8 +0,0 @@ -# frozen_string_literal: true - -class <%= migration_class_name %> < ActiveRecord::Migration[5.2] - disable_ddl_transaction! - - def change - end -end |