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

20221204090437_add_category_to_abuse_report.rb « migrate « db - gitlab.com/gitlab-org/gitlab-foss.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
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