summaryrefslogtreecommitdiff
path: root/db/migrate/20150806104937_create_abuse_reports.rb
blob: 9f1512db8625e0000e8c8321beb6e5d3dab5e79b (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 null: true
    end
  end
end