2023-10-19 16:37:34 -07:00
|
|
|
# frozen_string_literal: true
|
|
|
|
|
2020-04-19 09:10:31 -07:00
|
|
|
class CreateReports < ActiveRecord::Migration[4.2]
|
2014-12-27 05:35:09 -08:00
|
|
|
def change
|
|
|
|
create_table :reports do |t|
|
|
|
|
t.string :type, null: false
|
|
|
|
t.integer :target_id, null: false
|
|
|
|
t.integer :user_id, null: false
|
|
|
|
|
|
|
|
t.timestamps
|
|
|
|
end
|
|
|
|
end
|
|
|
|
end
|