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

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

class DropIntegrationsTemplateColumn < Gitlab::Database::Migration[1.0]
  enable_lock_retries!

  def change
    remove_column :integrations, :template, :boolean, default: false
  end
end