debian-mirror-gitlab/db/migrate/20150806104937_create_abuse_reports.rb
2016-06-16 23:09:34 +05:30

13 lines
239 B
Ruby

# 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