mirror of
https://github.com/Retrospring/retrospring.git
synced 2024-11-20 18:19:52 +01:00
11 lines
255 B
Ruby
11 lines
255 B
Ruby
class CreateReports < ActiveRecord::Migration[4.2]
|
|
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
|