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

database_clash_migration.txt « post_migrate « db « migrations « fixtures « spec - gitlab.com/gitlab-org/gitlab-foss.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: a936dafd69f5e6b2b7879dcfe71e6ab2d9ee8b31 (plain)
1
2
3
4
5
6
7
8
9
10
11
# frozen_string_literal: true

class ::ClashMigration < Gitlab::Database::Migration[2.0]
  def up
    add_column :dast_site_profiles, :scan_file_path, :text
  end

  def down
    remove_column :dast_site_profiles, :scan_file_path, :text
  end
end