5
0
Fork 0
mirror of https://0xacab.org/sutty/sutty synced 2024-05-17 04:20:48 +00:00
panel/db/migrate/20200801230101_change_referer_to_origin.rb
2020-08-18 10:17:13 -03:00

11 lines
438 B
Ruby

class ChangeRefererToOrigin < ActiveRecord::Migration[6.0]
def change
return unless Rails.env.production?
rename_column :access_logs, :http_referer, :http_origin
# Eliminar todos los referers anteriores manteniendo el origin
ActiveRecord::Base.connection.execute("update access_logs set http_origin = split_part(http_origin, '/', 1) || '//' || split_part(http_origin, '/', 3) where http_origin is not null")
end
end