Sha256: 35dc326de4881dc4dc9f749c0564f509b1e5fbd14b984822e124a3cf06108788

Contents?: true

Size: 1.4 KB

Versions: 33

Compression:

Stored size: 1.4 KB

Contents

# frozen_string_literal: true

require "active_record/scoping/default"
require "active_record/scoping/named"

module ActiveRecord
  # This class is used to create a table that keeps track of which migrations
  # have been applied to a given database. When a migration is run, its schema
  # number is inserted in to the `SchemaMigration.table_name` so it doesn't need
  # to be executed the next time.
  class SchemaMigration < ActiveRecord::Base # :nodoc:
    class << self
      def primary_key
        "version"
      end

      def table_name
        "#{table_name_prefix}#{ActiveRecord::Base.schema_migrations_table_name}#{table_name_suffix}"
      end

      def table_exists?
        connection.table_exists?(table_name)
      end

      def create_table
        unless table_exists?
          version_options = connection.internal_string_options_for_primary_key

          connection.create_table(table_name, id: false) do |t|
            t.string :version, version_options
          end
        end
      end

      def drop_table
        connection.drop_table table_name, if_exists: true
      end

      def normalize_migration_number(number)
        "%.3d" % number.to_i
      end

      def normalized_versions
        all_versions.map { |v| normalize_migration_number v }
      end

      def all_versions
        order(:version).pluck(:version)
      end
    end

    def version
      super.to_i
    end
  end
end

Version data entries

33 entries across 33 versions & 3 rubygems

Version Path
activerecord-5.2.3.rc1 lib/active_record/schema_migration.rb
activerecord-5.2.2.1 lib/active_record/schema_migration.rb
nullifyable-0.1.0 vendor/bundle/gems/activerecord-5.2.2/lib/active_record/schema_migration.rb
activerecord-5.2.2 lib/active_record/schema_migration.rb
activerecord-5.2.2.rc1 lib/active_record/schema_migration.rb
activerecord-5.2.1.1 lib/active_record/schema_migration.rb
activerecord-5.2.1 lib/active_record/schema_migration.rb
activerecord-5.2.1.rc1 lib/active_record/schema_migration.rb
activerecord-5.2.0 lib/active_record/schema_migration.rb
activerecord-5.2.0.rc2 lib/active_record/schema_migration.rb
activerecord-5.2.0.rc1 lib/active_record/schema_migration.rb
activerecord-5.2.0.beta2 lib/active_record/schema_migration.rb
activerecord-5.2.0.beta1 lib/active_record/schema_migration.rb