summaryrefslogtreecommitdiff
path: root/db/migrate/20230428101217_create_abuse_report_events.rb
blob: 78395955eaf17c3b9b4b36a5952076bfae620e61 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
# frozen_string_literal: true

class CreateAbuseReportEvents < Gitlab::Database::Migration[2.1]
  def change
    create_table :abuse_report_events do |t|
      t.bigint :abuse_report_id, null: false, index: true
      t.bigint :user_id, index: true
      t.datetime_with_timezone :created_at, null: false
      t.integer :action, limit: 2, null: false, default: 1
      t.integer :reason, limit: 2
      t.text :comment, limit: 1024
    end
  end
end