Sha256: 5a239838e7c046a2c06c4ce833f48502d27f5c40e0737ae6627ccdacb4860324

Contents?: true

Size: 1.28 KB

Versions: 5

Compression:

Stored size: 1.28 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}#{schema_migrations_table_name}#{table_name_suffix}"
      end

      def create_table
        unless connection.table_exists?(table_name)
          connection.create_table(table_name, id: false) do |t|
            t.string :version, **connection.internal_string_options_for_primary_key
          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

5 entries across 5 versions & 1 rubygems

Version Path
activerecord-7.0.0.rc3 lib/active_record/schema_migration.rb
activerecord-7.0.0.rc2 lib/active_record/schema_migration.rb
activerecord-7.0.0.rc1 lib/active_record/schema_migration.rb
activerecord-7.0.0.alpha2 lib/active_record/schema_migration.rb
activerecord-7.0.0.alpha1 lib/active_record/schema_migration.rb