summaryrefslogtreecommitdiff
path: root/db/post_migrate/20190522143720_drop_project_auto_devops_domain.rb
blob: 36278d83927825a453350cab8ec501c797c0005e (plain)
1
2
3
4
5
6
7
8
9
10
11
# frozen_string_literal: true

class DropProjectAutoDevopsDomain < ActiveRecord::Migration[5.1]
  include Gitlab::Database::MigrationHelpers

  DOWNTIME = false

  def change
    remove_column :project_auto_devops, :domain, :string
  end
end