Welcome to mirror list, hosted at ThFree Co, Russian Federation.

20231020082425_remove_force_full_reconciliation_from_workspaces.rb « post_migrate « db - gitlab.com/gitlab-org/gitlab-foss.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 85283183323aeef2609b08bb327dba4520764f9f (plain)
1
2
3
4
5
6
7
8
9
# frozen_string_literal: true

class RemoveForceFullReconciliationFromWorkspaces < Gitlab::Database::Migration[2.1]
  enable_lock_retries!

  def change
    remove_column :workspaces, :force_full_reconciliation, :boolean, default: false, null: false
  end
end