2020-04-19 18:10:31 +02:00
|
|
|
class CreateReports < ActiveRecord::Migration[4.2]
|
2014-12-27 14:35:09 +01: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
|