aboutsummaryrefslogtreecommitdiffstats
path: root/activerecord/lib/generators/active_record/migration/migration_generator.rb
diff options
context:
space:
mode:
authorJosé Valim <jose.valim@gmail.com>2010-03-23 13:40:19 +0100
committerJosé Valim <jose.valim@gmail.com>2010-03-23 13:40:41 +0100
commitb61f6f59805eec4f5bb873a85910c9fe00e839a9 (patch)
tree485dc3cee827ab4d79756e90d639ccc4dad464e1 /activerecord/lib/generators/active_record/migration/migration_generator.rb
parentb144b56d8288246f0de7437d10361a0f1ed2bd83 (diff)
downloadrails-b61f6f59805eec4f5bb873a85910c9fe00e839a9.tar.gz
rails-b61f6f59805eec4f5bb873a85910c9fe00e839a9.tar.bz2
rails-b61f6f59805eec4f5bb873a85910c9fe00e839a9.zip
Load generators from both lib/rails/generators and lib/generators. Using the former since it's less obstrusive.
Diffstat (limited to 'activerecord/lib/generators/active_record/migration/migration_generator.rb')
-rw-r--r--activerecord/lib/generators/active_record/migration/migration_generator.rb25
1 files changed, 0 insertions, 25 deletions
diff --git a/activerecord/lib/generators/active_record/migration/migration_generator.rb b/activerecord/lib/generators/active_record/migration/migration_generator.rb
deleted file mode 100644
index 7939977f72..0000000000
--- a/activerecord/lib/generators/active_record/migration/migration_generator.rb
+++ /dev/null
@@ -1,25 +0,0 @@
-require 'generators/active_record'
-
-module ActiveRecord
- module Generators
- class MigrationGenerator < Base
- argument :attributes, :type => :array, :default => [], :banner => "field:type field:type"
-
- def create_migration_file
- set_local_assigns!
- migration_template "migration.rb", "db/migrate/#{file_name}.rb"
- end
-
- protected
- attr_reader :migration_action
-
- def set_local_assigns!
- if file_name =~ /^(add|remove)_.*_(?:to|from)_(.*)/
- @migration_action = $1
- @table_name = $2.pluralize
- end
- end
-
- end
- end
-end