The code powering m.abunchtell.com https://m.abunchtell.com
No puede seleccionar más de 25 temas Los temas deben comenzar con una letra o número, pueden incluir guiones ('-') y pueden tener hasta 35 caracteres de largo.
 
 
 
 

18 líneas
391 B

  1. # frozen_string_literal: true
  2. require 'rails/generators'
  3. module Rails
  4. class PostDeploymentMigrationGenerator < Rails::Generators::NamedBase
  5. def create_migration_file
  6. timestamp = Time.zone.now.strftime('%Y%m%d%H%M%S')
  7. template 'migration.rb', "db/post_migrate/#{timestamp}_#{file_name}.rb"
  8. end
  9. def migration_class_name
  10. file_name.camelize
  11. end
  12. end
  13. end