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

20190522143720_drop_project_auto_devops_domain.rb « post_migrate « db - gitlab.com/gitlab-org/gitlab-foss.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
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