aboutsummaryrefslogtreecommitdiffstats
path: root/activerecord/lib/rails/generators/active_record
diff options
context:
space:
mode:
authorYves Senn <yves.senn@gmail.com>2013-09-27 16:16:58 +0200
committerYves Senn <yves.senn@gmail.com>2013-09-30 15:03:55 +0200
commit12720c77f5503478b308f278c067d5cb5cf840dd (patch)
treed591693c0ddc488b6f7137392fe496e4b629d6fa /activerecord/lib/rails/generators/active_record
parent28b4ffc37917f0552ef6537a15511b37b320d156 (diff)
downloadrails-12720c77f5503478b308f278c067d5cb5cf840dd.tar.gz
rails-12720c77f5503478b308f278c067d5cb5cf840dd.tar.bz2
rails-12720c77f5503478b308f278c067d5cb5cf840dd.zip
Make `.next_migration_number` reusable for third party AR generators.
Diffstat (limited to 'activerecord/lib/rails/generators/active_record')
-rw-r--r--activerecord/lib/rails/generators/active_record/migration.rb18
1 files changed, 18 insertions, 0 deletions
diff --git a/activerecord/lib/rails/generators/active_record/migration.rb b/activerecord/lib/rails/generators/active_record/migration.rb
new file mode 100644
index 0000000000..b7418cf42f
--- /dev/null
+++ b/activerecord/lib/rails/generators/active_record/migration.rb
@@ -0,0 +1,18 @@
+require 'rails/generators/migration'
+
+module ActiveRecord
+ module Generators # :nodoc:
+ module Migration
+ extend ActiveSupport::Concern
+ include Rails::Generators::Migration
+
+ module ClassMethods
+ # Implement the required interface for Rails::Generators::Migration.
+ def next_migration_number(dirname)
+ next_migration_number = current_migration_number(dirname) + 1
+ ActiveRecord::Migration.next_migration_number(next_migration_number)
+ end
+ end
+ end
+ end
+end