5
0
Fork 0
mirror of https://0xacab.org/sutty/sutty synced 2024-07-03 06:26:08 +00:00
panel/db/migrate/20200801230101_change_referer_to_origin.rb

9 lines
397 B
Ruby
Raw Normal View History

2020-08-01 23:13:09 +00:00
class ChangeRefererToOrigin < ActiveRecord::Migration[6.0]
def change
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, '/', 2) where http_origin is not null")
end
end