aboutsummaryrefslogtreecommitdiffstats
path: root/railties/lib/generators/active_record.rb
blob: 2c4c3286d4245e5dca475b7f2e8104316093bfe5 (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
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
require 'generators/named_base'
require 'active_record'

module ActiveRecord
  module Generators
    module Migration

      # Creates a migration template at the given destination. The difference
      # to the default template method is that the migration number is appended
      # to the destination file name.
      #
      # The migration number, migration file name, migration class name are
      # available as instance variables in the template to be rendered.
      #
      # ==== Examples
      #
      #   migration_template "migrate.rb", "db/migrate/add_foo_to_bar"
      #
      def migration_template(source, destination=nil, log_status=true)
        destination = File.expand_path(destination || source, self.destination_root)

        migration_dir = File.dirname(destination)
        @migration_number     = next_migration_number(migration_dir)
        @migration_file_name  = File.basename(destination).sub(/\.rb$/, '')
        @migration_class_name = @migration_file_name.camelize

        if existing = migration_exists?(migration_dir, @migration_file_name)
          raise Rails::Generators::Error, "Another migration is already named #{@migration_file_name}: #{existing}"
        end

        destination = File.join(migration_dir, "#{@migration_number}_#{@migration_file_name}.rb")
        template(source, destination, log_status)
      end

      protected

        def migration_exists?(dirname, file_name) #:nodoc:
          Dir.glob("#{dirname}/[0-9]*_*.rb").grep(/\d+_#{file_name}.rb$/).first
        end

        def current_migration_number(dirname) #:nodoc:
          Dir.glob("#{dirname}/[0-9]*_*.rb").collect{ |f| f.split("_").first.to_i }.max
        end

        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

    class Base < Rails::Generators::NamedBase
      include Migration
    end
  end
end