Sha256: c67ee743fa8315b14cf183e3e94ead37a0d35a43d4a9b70590aaa9ad1d05ca65

Contents?: true

Size: 1.97 KB

Versions: 43

Compression:

Stored size: 1.97 KB

Contents

require 'rails/generators/active_record'

module ActiveRecord
  module Generators # :nodoc:
    class MigrationGenerator < Base # :nodoc:
      argument :attributes, :type => :array, :default => [], :banner => "field[:type][:index] field[:type][:index]"

      def create_migration_file
        set_local_assigns!
        validate_file_name!
        migration_template @migration_template, "db/migrate/#{file_name}.rb"
      end

      protected
      attr_reader :migration_action, :join_tables

      # sets the default migration template that is being used for the generation of the migration
      # depending on the arguments which would be sent out in the command line, the migration template 
      # and the table name instance variables are setup.

      def set_local_assigns!
        @migration_template = "migration.rb"
        case file_name
        when /^(add|remove)_.*_(?:to|from)_(.*)/
          @migration_action = $1
          @table_name       = $2.pluralize
        when /join_table/
          if attributes.length == 2
            @migration_action = 'join'
            @join_tables      = attributes.map(&:plural_name)

            set_index_names
          end
        when /^create_(.+)/
          @table_name = $1.pluralize
          @migration_template = "create_table_migration.rb"
        end
      end

      def set_index_names
        attributes.each_with_index do |attr, i|
          attr.index_name = [attr, attributes[i - 1]].map{ |a| index_name_for(a) }
        end
      end

      def index_name_for(attribute)
        if attribute.foreign_key?
          attribute.name
        else
          attribute.name.singularize.foreign_key
        end.to_sym
      end

      private
        def attributes_with_index
          attributes.select { |a| !a.reference? && a.has_index? }
        end
        
        def validate_file_name!
          unless file_name =~ /^[_a-z0-9]+$/
            raise IllegalMigrationNameError.new(file_name)
          end
        end
    end
  end
end

Version data entries

43 entries across 43 versions & 2 rubygems

Version Path
activerecord-4.1.16 lib/rails/generators/active_record/migration/migration_generator.rb
activerecord-4.1.16.rc1 lib/rails/generators/active_record/migration/migration_generator.rb
activerecord-4.1.15 lib/rails/generators/active_record/migration/migration_generator.rb
activerecord-4.1.15.rc1 lib/rails/generators/active_record/migration/migration_generator.rb
activerecord-4.1.14.2 lib/rails/generators/active_record/migration/migration_generator.rb
activerecord-4.1.14.1 lib/rails/generators/active_record/migration/migration_generator.rb
angular-rails4-templates-0.4.1 vendor/ruby/2.1.0/gems/activerecord-4.1.13/lib/rails/generators/active_record/migration/migration_generator.rb
angular-rails4-templates-0.4.0 vendor/ruby/2.1.0/gems/activerecord-4.1.13/lib/rails/generators/active_record/migration/migration_generator.rb
angular-rails4-templates-0.3.0 vendor/ruby/2.1.0/gems/activerecord-4.1.13/lib/rails/generators/active_record/migration/migration_generator.rb
activerecord-4.1.14 lib/rails/generators/active_record/migration/migration_generator.rb
activerecord-4.1.14.rc2 lib/rails/generators/active_record/migration/migration_generator.rb
activerecord-4.1.14.rc1 lib/rails/generators/active_record/migration/migration_generator.rb
activerecord-4.1.13 lib/rails/generators/active_record/migration/migration_generator.rb
activerecord-4.1.13.rc1 lib/rails/generators/active_record/migration/migration_generator.rb
activerecord-4.1.12 lib/rails/generators/active_record/migration/migration_generator.rb
activerecord-4.1.12.rc1 lib/rails/generators/active_record/migration/migration_generator.rb
activerecord-4.1.11 lib/rails/generators/active_record/migration/migration_generator.rb
activerecord-4.1.10 lib/rails/generators/active_record/migration/migration_generator.rb
activerecord-4.1.10.rc4 lib/rails/generators/active_record/migration/migration_generator.rb
activerecord-4.1.10.rc3 lib/rails/generators/active_record/migration/migration_generator.rb