mirror of
https://gitlab.com/gitlab-org/gitlab-foss.git
synced 2025-08-01 16:04:19 +00:00
89 lines
2.8 KiB
Ruby
89 lines
2.8 KiB
Ruby
# frozen_string_literal: true
|
|
|
|
module Gitlab
|
|
module Database
|
|
class Migration
|
|
module LockRetriesConcern
|
|
extend ActiveSupport::Concern
|
|
|
|
included do
|
|
private
|
|
|
|
attr_accessor :with_lock_retries_used
|
|
end
|
|
|
|
def with_lock_retries_used!
|
|
self.with_lock_retries_used = true
|
|
end
|
|
|
|
def with_lock_retries_used?
|
|
with_lock_retries_used
|
|
end
|
|
end
|
|
|
|
# This implements a simple versioning scheme for migration helpers.
|
|
#
|
|
# We need to be able to version helpers, so we can change their behavior without
|
|
# altering the behavior of already existing migrations in incompatible ways.
|
|
#
|
|
# We can continue to change the behavior of helpers without bumping the version here,
|
|
# *if* the change is backwards-compatible.
|
|
#
|
|
# If not, we would typically override the helper method in a new MigrationHelpers::V[0-9]+
|
|
# class and create a new entry with a bumped version below.
|
|
#
|
|
# We use major version bumps to indicate significant changes and minor version bumps
|
|
# to indicate backwards-compatible or otherwise minor changes (e.g. a Rails version bump).
|
|
# However, this hasn't been strictly formalized yet.
|
|
|
|
class V1_0 < ActiveRecord::Migration[6.1]
|
|
include LockRetriesConcern
|
|
include Gitlab::Database::MigrationHelpers::V2
|
|
include Gitlab::Database::MigrationHelpers::AnnounceDatabase
|
|
|
|
# When running migrations, the `db:migrate` switches connection of
|
|
# ActiveRecord::Base depending where the migration runs.
|
|
# This helper class is provided to avoid confusion using `ActiveRecord::Base`
|
|
class MigrationRecord < ActiveRecord::Base
|
|
self.abstract_class = true # Prevent STI behavior
|
|
end
|
|
end
|
|
|
|
class V2_0 < V1_0
|
|
include Gitlab::Database::MigrationHelpers::RestrictGitlabSchema
|
|
end
|
|
|
|
class V2_1 < V2_0
|
|
include Gitlab::Database::MigrationHelpers::AutomaticLockWritesOnTables
|
|
include Gitlab::Database::Migrations::RunnerBackoff::MigrationHelpers
|
|
end
|
|
|
|
class V2_2 < V2_1
|
|
def self.inherited(subclass)
|
|
super
|
|
subclass.instance_variable_set(:@_defining_file, caller_locations.first.absolute_path)
|
|
end
|
|
|
|
include Gitlab::Database::Migrations::MilestoneMixin
|
|
end
|
|
|
|
class V2_3 < V2_2
|
|
include Gitlab::Database::MigrationHelpers::RequireDisableDdlTransactionForMultipleLocks
|
|
end
|
|
|
|
def self.[](version)
|
|
version = version.to_s
|
|
name = "V#{version.tr('.', '_')}"
|
|
raise ArgumentError, "Unknown migration version: #{version}" unless const_defined?(name, false)
|
|
|
|
const_get(name, false)
|
|
end
|
|
|
|
# The current version to be used in new migrations
|
|
def self.current_version
|
|
2.3
|
|
end
|
|
end
|
|
end
|
|
end
|