debian-mirror-gitlab/db/post_migrate/20200122144759_drop_kibana_column.rb
2020-03-13 15:44:24 +05:30

10 lines
223 B
Ruby

# 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