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