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

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

class RemoveIntegrationsProperties < Gitlab::Database::Migration[2.0]
  disable_ddl_transaction!

  def change
    remove_column :integrations, :properties, :text
  end
end