mirror of
https://github.com/Retrospring/retrospring.git
synced 2024-11-20 14:39:52 +01:00
13 lines
286 B
Ruby
13 lines
286 B
Ruby
# frozen_string_literal: true
|
|
|
|
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
|