5
0
Fork 0
mirror of https://0xacab.org/sutty/sutty synced 2024-05-17 06:00:48 +00:00
panel/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