summaryrefslogtreecommitdiff
path: root/lib/generators/post_deployment_migration/post_deployment_migration_generator.rb
diff options
context:
space:
mode:
Diffstat (limited to 'lib/generators/post_deployment_migration/post_deployment_migration_generator.rb')
-rw-r--r--lib/generators/post_deployment_migration/post_deployment_migration_generator.rb17
1 files changed, 17 insertions, 0 deletions
diff --git a/lib/generators/post_deployment_migration/post_deployment_migration_generator.rb b/lib/generators/post_deployment_migration/post_deployment_migration_generator.rb
new file mode 100644
index 00000000000..66ee0e2440f
--- /dev/null
+++ b/lib/generators/post_deployment_migration/post_deployment_migration_generator.rb
@@ -0,0 +1,17 @@
+# frozen_string_literal: true
+
+require 'rails/generators'
+
+module PostDeploymentMigration
+ class PostDeploymentMigrationGenerator < Rails::Generators::NamedBase
+ def create_migration_file
+ timestamp = Time.now.utc.strftime('%Y%m%d%H%M%S')
+
+ template "migration.rb", "db/post_migrate/#{timestamp}_#{file_name}.rb"
+ end
+
+ def migration_class_name
+ file_name.camelize
+ end
+ end
+end