summaryrefslogtreecommitdiff
path: root/db/migrate/20221204090437_add_category_to_abuse_report.rb
blob: e908f3354bbc7c6ca2e4148f3cad8d26b3abb8b1 (plain)
1
2
3
4
5
6
7
# frozen_string_literal: true

class AddCategoryToAbuseReport < Gitlab::Database::Migration[2.1]
  def change
    add_column :abuse_reports, :category, :integer, limit: 2, default: 1, null: false
  end
end