BigW Consortium Gitlab

20150806104937_create_abuse_reports.rb 270 Bytes
Newer Older
1
# rubocop:disable all
2
class CreateAbuseReports < ActiveRecord::Migration
3 4
  DOWNTIME = false

5 6 7 8 9 10
  def change
    create_table :abuse_reports do |t|
      t.integer :reporter_id
      t.integer :user_id
      t.text :message

11
      t.timestamps null: true
12 13 14
    end
  end
end