cba7f20dc8
Signed-off-by: Dmitriy Zaporozhets <dmitriy.zaporozhets@gmail.com>
11 lines
217 B
Ruby
11 lines
217 B
Ruby
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
|