summaryrefslogtreecommitdiff
path: root/db/post_migrate/20200122144759_drop_kibana_column.rb
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