20190317135723_add_uri_to_reports.rb 146 B

1234567
  1. # frozen_string_literal: true
  2. class AddUriToReports < ActiveRecord::Migration[5.2]
  3. def change
  4. add_column :reports, :uri, :string
  5. end
  6. end