Browse Source

add active record generator

for_activeadmin
Carlos Vilhena 13 years ago
parent
commit
3a7293218a
  1. 14
      lib/generators/active_record/two_factor_authentication_generator.rb

14
lib/generators/active_record/two_factor_authentication_generator.rb

@ -0,0 +1,14 @@
require 'rails/generators/active_record'
module ActiveRecord
module Generators
class TwoFactorAuthenticationGenerator < ActiveRecord::Generators::Base
source_root File.expand_path("../templates", __FILE__)
def copy_two_factor_authentication_migration
migration_template "migration.rb", "db/migrate/two_factor_authentication_add_to_#{table_name}"
end
end
end
end
Loading…
Cancel
Save