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

20221229064959_add_links_to_spam_to_abuse_reports.rb « migrate « db - gitlab.com/gitlab-org/gitlab-foss.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: af4761644c4d637d647d4401bd2f01f34e5d6096 (plain)
1
2
3
4
5
6
7
# frozen_string_literal: true

class AddLinksToSpamToAbuseReports < Gitlab::Database::Migration[2.1]
  def change
    add_column :abuse_reports, :links_to_spam, :text, array: true, null: false, default: []
  end
end