sutty/db/migrate/20200206151057_add_source_to_csp_reports.rb
2020-02-06 13:17:04 -03:00

8 lines
239 B
Ruby

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