sutty/db/migrate/20200206151057_add_source_to_csp_reports.rb

8 lines
239 B
Ruby
Raw Permalink Normal View History

2020-02-06 16:11:17 +00:00
class AddSourceToCspReports < ActiveRecord::Migration[6.0]
def change
add_column :csp_reports, :column_number, :integer
add_column :csp_reports, :line_number, :integer
add_column :csp_reports, :source_file, :string
end
end