aboutsummaryrefslogtreecommitdiffstats
path: root/railties/lib/generators/active_record.rb
blob: 70f2421ac23d581ed9c59ed7332a7ea3bc324497 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
require 'generators/named_base'
require 'generators/migration'
require 'active_record'

module ActiveRecord
  module Generators
    class Base < Rails::Generators::NamedBase
      include Rails::Generators::Migration

      protected

        # Implement the required interface for Rails::Generators::Migration.
        #
        def next_migration_number(dirname) #:nodoc:
          if ActiveRecord::Base.timestamped_migrations
            Time.now.utc.strftime("%Y%m%d%H%M%S")
          else
            "%.3d" % (current_migration_number(dirname) + 1)
          end
        end

    end
  end
end