mirror of
https://0xacab.org/sutty/sutty
synced 2024-11-14 23:31:41 +00:00
7 lines
239 B
Ruby
7 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
|