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

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

class DropKibanaColumn < ActiveRecord::Migration[5.2]
  DOWNTIME = false

  def change
    remove_column :clusters_applications_elastic_stacks, :kibana_hostname, :string, limit: 255
  end
end