summaryrefslogtreecommitdiff
path: root/db/migrate/20221212054640_add_reported_from_to_abuse_reports.rb
blob: 701c0fa2e2c04973b1aa4c8d9973f2e2ce12af6b (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
# frozen_string_literal: true

class AddReportedFromToAbuseReports < Gitlab::Database::Migration[2.1]
  disable_ddl_transaction!

  def up
    with_lock_retries do
      unless column_exists?(:abuse_reports, :reported_from_url)
        add_column :abuse_reports, :reported_from_url, :text, null: false, default: ''
      end
    end

    add_text_limit :abuse_reports, :reported_from_url, 512
  end

  def down
    with_lock_retries do
      remove_column :abuse_reports, :reported_from_url if column_exists?(:abuse_reports, :reported_from_url)
    end
  end
end