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

20150806104937_create_abuse_reports.rb « migrate « db - gitlab.com/gitlab-org/gitlab-foss.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 3c749b5d9a9b969dd768f946f5705fafc7bb7d5d (plain)
1
2
3
4
5
6
7
8
9
10
11
12
# rubocop:disable all
class CreateAbuseReports < ActiveRecord::Migration
  def change
    create_table :abuse_reports do |t|
      t.integer :reporter_id
      t.integer :user_id
      t.text :message

      t.timestamps
    end
  end
end