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

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

class Gitlab::Database::DatabaseMigration < 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