require 'rails/generators/active_record' module ActiveRecord module Generators class DevisePhoneGenerator < ActiveRecord::Generators::Base source_root File.expand_path("../templates", __FILE__) def copy_devise_migration migration_template "migration.rb", "db/migrate/devise_phone_add_to_#{table_name}.rb" end end end end