gitlab-org--gitlab-foss/db/migrate/20150806104937_create_abuse...

15 lines
275 B
Ruby

# rubocop:disable all
class CreateAbuseReports < ActiveRecord::Migration[4.2]
DOWNTIME = false
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