gitlab-org--gitlab-foss/db/migrate/20150806104937_create_abuse_reports.rb
Rémy Coutable a59e75a17f
Make the downtime_check task happy
Signed-off-by: Rémy Coutable <remy@rymai.me>
2016-11-30 16:15:02 +01:00

14 lines
270 B
Ruby

# rubocop:disable all
class CreateAbuseReports < ActiveRecord::Migration
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